Image-Info-0.03.tar.gz
[Image-Info.git] / README
blob8895ef3dfb4516fbb5f37a2fd172f87ab965abfb
1 !!! This is work in progress.  Class names and interfaces will change.
2 !!! Documentation is lacking.
4 This Perl extention allows you to extract information from various
5 image files.  In this alpha release we only support JPEG (plain JFIF
6 and Exif) and PNG.  Usage is something like this:
8    use Image::Info qw(image_info);
10    @info = image_info("filename");
11    $hash_describing_1st_image = $info[0];
12    $hash_describing_2nd_image = $info[1];
14 TODO:
15    - add support for more image formats
16    - standardize hash names (based on TIFF?)
17    - rational class
18    - Image::TIFF should not need to slurp
21 Copyright 1999 Gisle Aas.
23 This library is free software; you can redistribute it and/or modify
24 it under the same terms as Perl itself.
26 The Exif code is written based on TsuruZoh Tachibanaya's "Description
27 of Exif file format" and Thierry Bousch's Python module 'exifdump.py'
29    http://www.butaman.ne.jp/~tsuruzoh/Computer/Digicams/exif-e.html
30    http://topo.math.u-psud.fr/~bousch/exifdump.py