NAME
Image::Filter::Blur - Blur an image.
SYNOPSIS
use Image::Filter;
$image = Image::Filter::newFromJpeg("tiabw.jpg");
$image = $image->filter("blur"); #Load Image::Filter::Blur
$image = $image->filter("blur",1); #Force a B&W Blur (faster)
$image->Jpeg("test.jpg");
DESCRIPTION
Image::Filter is a perl module that can apply image filters. This module implements a simple blur. The true color blur is slower than the Black & White blur included in release 0.04 and below. If you, for some reason, still want to use the Black & White blur instead of the current true color blue, add a 1 to the parameter list (as demonstrated above). It uses the gd lib from Thomas Boutell. This filter handles true color images.
EXPORT
blur
AUTHOR
Hendrik Van Belleghem, <beatnik + at + quickndirty + dot + org>
LICENSE
Image::Filter is released under the GNU Public License. See COPYING and COPYRIGHT for more information.
THANKS & CREDITS
Image::Filter is based on the concepts tought to me by my math professor J. Van Hee. This module wouldn't be possible without the work of Thomas Boutell on his gd library. Inspiration, but no code, was taken from Lincoln D. Steins GD implementation of that same gd lib.
SEE ALSO
perl.