On Tue, 5 Sep 2006, Mike Blezien wrote:

> Owen,
> ----- Original Message ----- 
> From: "Owen Cook" <[EMAIL PROTECTED]>
> To: "Mike Blezien" <[EMAIL PROTECTED]>
> Cc: "Perl List" <beginners@perl.org>
> Sent: Tuesday, September 05, 2006 7:11 PM
> Subject: Re: Image/Magick - Blurring
> 
> 
> > 
> > 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");
> 
> Where do you get the '10x10' ? 
> Is this standard for blur on a rectangle image approx., 40h x 100w 



I suggest you read about ImageMagick,
http://www.imagemagick.org/script/command-line-options.php is a reasonable
start but there are many others

'10x10' was just a figure plucked from the air, experiment for the effect
you want



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