Thanks for pointing this out! (We perl newbies have to learn
somehow... ;) )
I have fixed this oversight and released a new version of
Image::ExifTool (version 3.74), which is available from my web page:
http://owl.phy.queensu.ca/~phil/exiftool/
I will upload a new version to CPAN in a few days.
- Phil Harvey
On Nov 4, 2004, at 9:08 AM, Randal_L_Schwartz via RT wrote:
Show quoted text>
> This message about Image-ExifTool was sent to you by MERLYN
> <MERLYN@cpan.org> via rt.cpan.org
>
> Full context and any attached attachments can be found at:
> <URL:
https://rt.cpan.org/Ticket/Display.html?id=8240 >
>
> I had to change a loop that began:
>
> for (@ARGV) {
> my $ii = ImageInfo($_, qw(DateTimeOriginal DateTime))
> or warn("Skipping $file\n"), next;
>
> to
>
> for my $file (@ARGV) {
> my $ii = ImageInfo($file, qw(DateTimeOriginal DateTime))
> or warn("Skipping $file\n"), next;
>
> because something in ImageInfo is messing with $_. Please be sure you
> properly localize $_.