如何使用PerlMagick提取EXIF数据?

时间:2009-11-10 14:36:54

标签: perl imagemagick exif

我目前正在使用Perl Magick http://www.imagemagick.org/script/perl-magick.php,这是Image Magick http://www.imagemagick.org的perl界面,用于处理&转换我们网站用户上传的照片。我希望能够捕获附加到这些图像的一些EXIF数据,并且我已经能够使用命令行界面使用以下命令找出如何执行此操作:

/usr/bin/identify -format "%[EXIF:*]" image.jpg

返回特定照片的以下EXIF信息:

exif:ApertureValue=29/8
exif:ColorSpace=1
exif:CompressedBitsPerPixel=3/1
exif:CustomRendered=0
exif:DateTime=2002:10:08 19:49:52
exif:DateTimeDigitized=2002:09:29 14:03:55
exif:DateTimeOriginal=2002:09:29 14:03:55
exif:DigitalZoomRatio=1/1
exif:ExifImageLength=307
exif:ExifImageWidth=410
exif:ExifOffset=192
exif:ExifVersion=48, 50, 50, 48
exif:ExposureBiasValue=0/1
exif:ExposureMode=0
exif:ExposureTime=1/1000
exif:Flash=24
exif:FlashPixVersion=48, 49, 48, 48
exif:FNumber=7/2
exif:FocalLength=227/32
exif:FocalPlaneResolutionUnit=2
exif:FocalPlaneXResolution=235741/32
exif:FocalPlaneYResolution=286622/39
exif:Make=Canon
exif:MaxApertureValue=12742/4289
exif:MeteringMode=5
exif:Model=Canon PowerShot S30
exif:ResolutionUnit=2
exif:SceneCaptureType=0
exif:SensingMethod=2
exif:ShutterSpeedValue=319/32
exif:Software=Adobe Photoshop 7.0
exif:WhiteBalance=0
exif:XResolution=180/1
exif:YResolution=180/1

我已经尝试了大约100种方法来从Perl Magick获得相同的结果,但无法弄清楚如何通过我在命令行上使用的相同参数来使其正常工作。以下是我尝试的几种变体,但似乎都没有效果:

use Image::Magick;
my $image = Image::Magick->new;
my $exif = $image->Identify('image.jpg');
print $exif;

$image->Read('image.jpg');
$exif = $image->Get('format "%[EXIF:*]"');
print $exif;

我知道还有其他方法可以从perl中的图像文件中提取EXIF数据,但由于我们已经加载了Perl Magick模块,因此我不想因为必须加载额外的模块而浪费更多内存。我希望有人在他们的网站上已经有这个工作,并可以分享解决方案。在此先感谢您的帮助!

3 个答案:

答案 0 :(得分:9)

> cat im.pl
use Image::Magick;
my $image = Image::Magick->new();
$image->Read('/home/rjp/2009-02-18/DSC00343.JPG');
my $a = $image->Get('format', '%[EXIF:*]'); # two arguments
my @exif = split(/[\r\n]/, $a);
print join("\n", @exif);
> perl im.pl
exif:ColorSpace=1
exif:ComponentsConfiguration=...
exif:Compression=6
exif:CustomRendered=0
exif:DateTime=2009:02:13 16:18:15
exif:DateTimeDigitized=2009:02:13 16:18:15
...

这似乎有效。

版本:ImageMagick 6.3.7 06/04/09 Q16 http://www.imagemagick.org

答案 1 :(得分:1)

我强烈建议你使用Phil Harvey的ExifTool。它是全面的,有据可查的。此外,它不会将整个图像读入内存,根据文档,您只需将文件句柄传递给打开的图像文件即可从图像中获取Exif信息。所以它不应该浪费很多记忆。

答案 2 :(得分:0)

编辑: @rjp展示了如何访问所有信息而不是单个标签。以下是如何将数据放入哈希:

#!/usr/bin/perl

use strict;
use warnings;

use Image::Magick;

my $image = Image::Magick->new;
$image->read('test.jpg');

my %exif = map { s/\s+\z//; $_ }
           map { split /=/, $_  }
           split /exif:/, $image->Get('format', '%[EXIF:*]');

use Data::Dumper;
print Dumper \%exif;