File: README

package info (click to toggle)
libimage-info-perl 1.45-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 940 kB
  • sloc: perl: 3,539; makefile: 12
file content (28 lines) | stat: -rw-r--r-- 644 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
This Perl extension allows you to extract meta information from various
types of image files. The following file formats are supported:

   JPEG (plain JFIF and Exif)
   PNG
   GIF
   PBM/PGM/PPM
   SVG
   XBM/XPM
   BMP/DIB/RLE
   WEBP
   AVIF

Usage is something like this:

   use Image::Info qw(image_info);

   @info = image_info("filename");
   $refto_hash_describing_1st_image = $info[0];
   $refto_hash_describing_2nd_image = $info[1];

Copyright 1999-2004 Gisle Aas.

Now maintained by Slaven Rezic <srezic@cpan.org>

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl v5.8.8 itself.