NAME
Image::Pbm - Load, create, manipulate and save pbm image files.
SYNOPSIS
use Image::Pbm();
my $i = Image::Pbm->new(-width => 50, -height => 25 );
$i->line ( 2, 2, 22, 22 => 1 );
$i->rectangle( 4, 4, 40, 20 => 1 );
$i->ellipse ( 6, 6, 30, 15 => 1 );
print $i->as_string;
$i->save('test.pbm');
$i = Image::Pbm->new(-file,'test.pbm');
DESCRIPTION
This module provides basic load, manipulate and save functionality for the pbm file format. It inherits from Image::Xbm
which provides additional functionality.
AUTHOR
Steffen Goeldner <sgoeldner@cpan.org>
COPYRIGHT
Copyright (c) 2004 Steffen Goeldner. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.