PerlMagick (was ... Re: Installation)
On Sun, Sep 23, 2012 at 06:36:48PM +0200, lee wrote:
> Crop a picture with imagemagic? I just found out you can actually do
> that, and it starts a lot faster than gimp. I sometimes use it to
> display an image or for converting images and taking screenshots. It's
Huh! All you need is perlmagick.
e.g: Simple convert:
#!/usr/bin/perl
#
# Overall demo of the major PerlMagick methods.
#
use Image::Magick;
$p = new Image::Magick;
$p->Read("kim-mathematics.gif");
$p->Write("math.jpg");
---------------------------------------
See:
http://www.imagemagick.org/script/perl-magick.php
--
"If you're not careful, the newspapers will have you hating the people
who are being oppressed, and loving the people who are doing the
oppressing." --- Malcolm X
Reply to: