1Image-PBMlib version 2.00
2=========================
3
4This is a pure perl library to read and write the netpbm / pbmplus
5family of file formats. It understands PBM (bitmap), PGM (graymap),
6and PPM (pixmap) files. Sometimes those are, collectively, called
7PNM (anymap). The multichannel PAM format is not supported.
8
9Version 2 is a nearly complete rewrite with an all new interface.
10It properly supports the maxval attribute of PGM and PPM files,
11up to a full 16 bits per value.
12
13Although I have not tested this below Perl 5.10, I expect it will
14work down to 5.6 or so. That said, it has "use 5.010000;" because
15that is what I have tested.
16
17INSTALLATION
18
19To install this module type the following:
20
21   perl Makefile.PL
22   make
23   make test
24   make install
25
26DEPENDENCIES
27
28This module is standalone code that does not require any modules
29not distributed with Perl.
30
31COPYRIGHT AND LICENCE
32
33Put the correct copyright and licence information here.
34
35Copyright (C) 2012 by Benjamin Elijah Griffin / Eli the Bearded
36<elijah@cpan.org>
37
38This library is free software; you can redistribute it and/or modify
39it under the same terms as Perl itself, either Perl version 5.10.0 or,
40at your option, any later version of Perl 5 you may have available.
41
42
43