On Tue, 5 Sep 2006, Mike Blezien wrote:

> Hello,
> 
> I'm using the Image::Magick module and need to slight Blur a PNG image.
> 
> my $imagepng = '/path/to/image.png';
> 
> my $image = Image::Magick->new();
>       $image->Read($imagepng);
> 
> # Now create image with Blur



$image->Blur(geometry=>'10x10');
$image->Write ("/path/to/image_blurred.png");




Owen


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to