Search found 9 matches

by YouPict.Ru
2012-10-01T23:56:41-07:00
Forum: Users
Topic: Compile RPM packages for CentOS 6.3
Replies: 0
Views: 4465

Compile RPM packages for CentOS 6.3

Hi all!
Who wants to try to compile RPM packages for CentOS 6.3 from SRPM?

RU Site:
http://shibka.ru/journal/?menu=26&usr=12&d=97

Links:
http://shibka.ru/arh/CentOS/ImageMagic/imagemagick-6.7.9-8.i686.rpm
http://shibka.ru/arh/CentOS/ImageMagic/imagemagick-devel-6.7.9-8.i686.rpm
http://shibka.ru ...
by YouPict.Ru
2012-04-04T03:43:18-07:00
Forum: PerlMagick
Topic: Cyrillic text from the image
Replies: 1
Views: 13548

Cyrillic text from the image

Hi all!

Cyrillic text from the image. My decision.


use Encode;
use Image::Magick;
$image = Image::Magick->new;
$image->Set(size=>'250x250');
$image->ReadImage('canvas:red');
$image->Border(width=>1, height=>1, bordercolor=>'black');
$text = 'Текст кириллица';
$text = encode("utf8", decode ...
by YouPict.Ru
2012-01-09T03:59:57-07:00
Forum: PerlMagick
Topic: DJVU, in the variable $size zero is returned
Replies: 2
Views: 16255

Re: DJVU, in the variable $size zero is returned

Always glad to help!
Thank you, waiting for a release. :D

P.S.
I really like your software product.
I want to make a mirror on my server to download your software product.
As you look at it?
by YouPict.Ru
2011-12-27T23:41:24-07:00
Forum: PerlMagick
Topic: DJVU, in the variable $size zero is returned
Replies: 2
Views: 16255

DJVU, in the variable $size zero is returned

Hi!
System: CentOC5, Magick 6.7.4

When converting from DJVU and using Ping:

use Image::Magick;
$image = Image::Magick->new;
($width, $height, $size, $format) = $image->Ping("name.djvu");
print "$width, $height, $size, $format \n";
...
...
...

in the variable $size zero is returned!

What's the ...
by YouPict.Ru
2011-11-02T02:08:10-07:00
Forum: PerlMagick
Topic: Very slow process PDF -> JPEG:
Replies: 3
Views: 18252

Re: Very slow process PDF -> JPEG:

I found a normal solution is to make a quick preview of PDF
Need to request a single layer of PDF: name.pdf[0]


use Image::Magick;
$image = Image::Magick->new;
($width, $height, $size, $format) = $image->Ping("name.pdf[0]");
print "$width, $height, $size, $format \n";
...
...
...


P.S. for the ...
by YouPict.Ru
2011-11-01T22:54:41-07:00
Forum: PerlMagick
Topic: Very slow process PDF -> JPEG:
Replies: 3
Views: 18252

Re: Very slow process PDF -> JPEG:

Ping that is normally only handles JPEG, PNG, PSD, GIF, BMP?
by YouPict.Ru
2011-10-31T23:32:36-07:00
Forum: PerlMagick
Topic: Very slow process PDF -> JPEG:
Replies: 3
Views: 18252

Very slow process PDF -> JPEG:

Hi!

System: CentOC5, Win 2003, Magick 6.7.3-3

Very slow process PDF -> JPEG:
File size 3MB


use Image::Magick;
$image = Image::Magick->new;
($width, $height, $size, $format) = $image->Ping("name.pdf");
print "$width, $height, $size, $format \n";
...
...
...


The process $image->Ping() takes ...
by YouPict.Ru
2011-10-27T03:12:58-07:00
Forum: PerlMagick
Topic: How to convert tiff to a single jpg???
Replies: 2
Views: 22262

Re: How to convert tiff to a single jpg???

many thanks!
by YouPict.Ru
2011-10-26T20:58:29-07:00
Forum: PerlMagick
Topic: How to convert tiff to a single jpg???
Replies: 2
Views: 22262

How to convert tiff to a single jpg???

Hi!

Converting the tiff to format jpg generated a lot of files jpg:


use Image::Magick;
$image = Image::Magick->new;
$image->Read("test.tif");
$image->Set (compression=>"JPEG", quality=>90);
$image->Write ("test.jpg");


Resut: test.tif -> test-0.jpg, test-1.jpg and etc.

How to convert tiff ...