Ignore:
Timestamp:
2011-06-01T12:33:42+12:00 (13 years ago)
Author:
sjm84
Message:

Updating the ExifTool perl modules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/cpan/Image/ExifTool/MIFF.pm

    r16842 r24107  
    1616use Image::ExifTool qw(:DataAccess :Utils);
    1717
    18 $VERSION = '1.03';
     18$VERSION = '1.05';
    1919
    2020# MIFF chunks
     
    2222    GROUPS => { 2 => 'Image' },
    2323    NOTES => q{
    24 The MIFF format allows aribrary tag names to be used.  Only the standard tag
    25 names are listed below, however ExifTool will decode any tags found in the
    26 image.
     24        The MIFF (Magick Image File Format) format allows aribrary tag names to be
     25        used.  Only the standard tag names are listed below, however ExifTool will
     26        decode any tags found in the image.
    2727    },
    2828   'background-color' => 'BackgroundColor',
     
    120120    # slurp those entire files, which will be slower, but will work
    121121    # OK except that the profile information won't be decoded
    122     my $oldsep = $/;
    123     $/ = ":\x1a";
     122    local $/ = ":\x1a";
    124123
    125124    my $mode = '';
     
    175174        }
    176175    }
    177     $/ = $oldsep;   # restore separator to original value
    178176
    179177    # process profile information
     
    232230            if ($verbose) {
    233231                $exifTool->VerboseDir($type, 0, $len);
    234                 Image::ExifTool::HexDump(\$buff, undef,
    235                     Out => $exifTool->Options('TextOut')
    236                 ) if $verbose > 2;
    237              }
     232                $exifTool->VerboseDump(\$buff);
     233            }
    238234         }
    239235    }
     
    260256=head1 AUTHOR
    261257
    262 Copyright 2003-2007, Phil Harvey (phil at owl.phy.queensu.ca)
     258Copyright 2003-2011, Phil Harvey (phil at owl.phy.queensu.ca)
    263259
    264260This library is free software; you can redistribute it and/or modify it
Note: See TracChangeset for help on using the changeset viewer.