Hi all, I am using PerlMagick and ImageMagick 6.7 to add a watermark to images. From the commandline on the same server using the following command the image is watermarked correctly without any white edges.
composite -gravity southwest -dissolve 50 /esp/data/watermark.png preview.jpg test.jpg
Using the following code in Perl I get a jagged white edge: -
#!/usr/bin/perl
use Image::Magick;
my $wmarkimg = Image::Magick->new;
my $obj = Image::Magick->new;
$wmarkimg->ReadImage('png:watermark.png');
$obj->ReadImage('preview.jpg');
$obj->Composite(image=>$wmarkimg,compose=>'Dissolve',gravity=>'SouthWest',opacity=>'50%');
$obj->write('test2.jpg');
1;
I've spent the whole morning changing a whole range of the options on Composite and searching for anyone with a similar issue but have got no where.
White Edges on Watermarks
Re: White Edges on Watermarks
Discovered the solution here: -
http://stackoverflow.com/questions/1456 ... rent-image
http://stackoverflow.com/questions/1456 ... rent-image
Code: Select all
$watermark->Evaluate(
operator => 'Multiply',
value => 0.6,
channel => 'Alpha',
);
$background->Composite(
image => $watermark,
gravity => 'Center',
);