Sepia effect

PerlMagick is an object-oriented Perl interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning PerlMagick.
Post Reply
MrsCalahan
Posts: 9
Joined: 2009-05-13T01:28:22-07:00
Authentication code: 8675309

Sepia effect

Post by MrsCalahan »

Hi,

I try to set an Sepia effect on a picture.
It works via console: convert -sepia-tone 80% bild.jpg bild.jpg

but I need it in this style:
my $var_img= Image::Magick->new();
my $error=$var_img->Read("$var_datei");
$var_img->OilPaint(radius=>"$var_p1")

Can anybody help me?
Post Reply