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/Leaf.pm

    r16842 r24107  
    1414use Image::ExifTool::Exif;
    1515
    16 $VERSION = '1.01';
     16$VERSION = '1.03';
    1717
    1818sub ProcessLeaf($$$);
     
    2222    GROUPS => { 0 => 'Leaf', 2 => 'Camera' },
    2323    NOTES => q{
    24 These tags are found in .MOS images from Leaf digital camera backs as
    25 written by Creo Leaf Capture.  They exist within the Leaf-specific directory
    26 structure of EXIF tag 0x8606. The tables below list observed Leaf tags,
    27 however ExifTool will extract any tags found in the Leaf directories even if
    28 they don't appear in these tables.
     24        These tags are found in .MOS images from Leaf digital camera backs as
     25        written by Creo Leaf Capture.  They exist within the Leaf-specific directory
     26        structure of EXIF tag 0x8606. The tables below list observed Leaf tags,
     27        however ExifTool will extract any tags found in the Leaf directories even if
     28        they don't appear in these tables.
    2929    },
    3030    icc_camera_profile => {
     
    336336# table for Leaf SubIFD entries
    337337%Image::ExifTool::Leaf::SubIFD = (
    338     GROUPS => { 0 => 'EXIF', 1 => 'LeafSubIFD', 2 => 'Image'},
     338    GROUPS => { 0 => 'MakerNotes', 1 => 'LeafSubIFD', 2 => 'Image'},
    339339    WRITE_PROC => \&Image::ExifTool::Exif::WriteExif,
    340340    NOTES => q{
    341 Leaf also writes a TIFF-format sub-IFD inside IFD0 of a MOS image.  No tags
    342 in this sub-IFD are currently known, except for tag 0x8606 which really
    343 shouldn't be here anyway (so it doesn't appear in the table below) because
    344 it duplicates a reference to the same data of tag 0x8606 in IFD0.
     341        Leaf writes a TIFF-format sub-IFD inside IFD0 of a MOS image.  No tags in
     342        this sub-IFD are currently known, except for tag 0x8606 which really
     343        shouldn't be here anyway (so it doesn't appear in the table below) because
     344        it duplicates a reference to the same data of tag 0x8606 in IFD0.
    345345    },
    346346);
     
    472472                $exifTool->ProcessDirectory(\%subdirInfo, $subTable);
    473473            } else {
    474                 $val =~ tr/\n/ /;   # remove newlines from value
     474                $val =~ tr/\n/ /;   # translate newlines to spaces
     475                $val =~ s/\0+$//;   # remove null terminators
    475476                $exifTool->FoundTag($tagInfo, $val);
    476477            }
     
    502503=head1 AUTHOR
    503504
    504 Copyright 2003-2007, Phil Harvey (phil at owl.phy.queensu.ca)
     505Copyright 2003-2011, Phil Harvey (phil at owl.phy.queensu.ca)
    505506
    506507This library is free software; you can redistribute it and/or modify it
Note: See TracChangeset for help on using the changeset viewer.