Image-Info-1.28.tar.gz
[Image-Info.git] / README
blobde35bcf4f12afad7feede5ba0a9e8526f5edb3c5
1 This Perl extention allows you to extract meta information from various
2 types of image files. The following file formats are supported:
4    JPEG (plain JFIF and Exif)
5    PNG
6    GIF
7    PBM/PGM/PPM
8    SVG
9    XBM/XPM
10    BMP/DIB/RLE
12 Usage is something like this:
14    use Image::Info qw(image_info);
16    @info = image_info("filename");
17    $refto_hash_describing_1st_image = $info[0];
18    $refto_hash_describing_2nd_image = $info[1];
20 Copyright 1999-2004 Gisle Aas.
22 Now maintained by Tels <nospam-abuse@bloodgate.com>
24 Note that while the module is still maintained, no new features
25 will be added.
27 Especially the EXIF parsing code is buggy, not tested at all,
28 and quite incomplete (a lot of manufacturer's MakerNotes and tags are
29 not parsed at all). If you want a stable, feature-complete, up-to-date
30 and tested EXIF parsing library, please use Image::ExifTool. 
32 This library is free software; you can redistribute it and/or modify
33 it under the same terms as Perl v5.8.8 itself.