https://github.com/mons/image-libexif
Read EXIF. Efficiently
https://github.com/mons/image-libexif
Last synced: 10 months ago
JSON representation
Read EXIF. Efficiently
- Host: GitHub
- URL: https://github.com/mons/image-libexif
- Owner: Mons
- Created: 2010-10-21T10:13:36.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2010-11-26T23:40:59.000Z (over 15 years ago)
- Last Synced: 2023-03-10T20:33:10.546Z (over 3 years ago)
- Language: C
- Homepage: http://search.cpan.org/dist/Image-LibExif
- Size: 664 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
NAME
Image::LibExif - Read EXIF. Efficiently
SYNOPSIS
use Image::LibExif;
my $exif = image_exif("source.jpg");
if (defined $exif) {
print Dumper $exif;
} else {
print "Exif not found\n";
}
DESCRIPTION
Very simple and very fast (about 30 times faster than Image::ExifTool)
EXIF extractor, based on libexif.
EXPORT
image_exif
SEE ALSO
* Image::ExifTool - Very powerful EXIF manipulation module, but a bit
slow
* Image::EXIF - Another EXIF reader, that is an implementation of
exiftags in XS. I've encounter a lot segfaults there.
* Image::JpegTran - Lossless JPEG transformation utility. XS wrap of
jpegtran from libjpeg
AUTHOR
Mons Anderson <<>>
COPYRIGHT AND LICENSE
Copyright (C) 2010 by Mons Anderson
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself