NAME

Image::Filter - Apply filters onto images.

SYNOPSIS

use Image::Filter;

$image = Image::Filter::newFromJpeg("tiabw.jpg");
$image = $image->filter("blur");
$image->Jpeg("blurtest.jpg"); 

DESCRIPTION

Image::Filter is a perl module that can apply image filters. Currently blurring and embossing are included (several others are under development). Image::Filter currently only does Black & White images. It uses the gd lib from Thomas Boutell.

EXPORT

None by default.

FILTERS

Blur

Basic, none to fancy, Black and White blur routine

Edge

Basic, none to fancy, Black and White edge routine

Emboss

Basic, none to fancy, Black and White emboss routine

Foo

Basic, none to fancy, Black and White foo routine

Oh yeah, this is a dummy filter :)

Invert

Basic, none to fancy, invert routine

Posterize

Basic, none to fancy, Black and White posterize routine

Sharpen

Basic, none to fancy, Black and White sharpen routine

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.

2 POD Errors

The following errors were encountered while parsing the POD:

Around line 47:

'=item' outside of any '=over'

Around line 77:

You forgot a '=back' before '=head1'