~ubuntu-branches/ubuntu/karmic/libimage-exiftool-perl/karmic

« back to all changes in this revision

Viewing changes to lib/Image/ExifTool/WritePNG.pl

  • Committer: Bazaar Package Importer
  • Author(s): Mari Wang
  • Date: 2008-02-04 20:32:53 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080204203253-mpbal8trlfe1fz5d
Tags: 7.00-1
* Upload of new production release (Closes: #456430)
* Added Recommends: libcompress-zlib-perl (Closes: #435589)
* Package now includes iptc2xmp.args and xmp2iptc.args, they are put
  into /usr/share/libimage-exiftool/ (Closes: #436100)
* Updated standards-version (3.7.2 -> 3.7.3). No changes needed.
* Lots of updates and bugfixes compared to last debian version
  (6.90).  See the Changes file for details
* Upload sponsored by Petter Reinholdtsen

Show diffs side-by-side

added added

removed removed

Lines of Context:
193
193
            $exifTool->{TIFF_TYPE} = 'APP1';
194
194
            $tagTablePtr = GetTagTable('Image::ExifTool::Exif::Main');
195
195
            # use specified byte ordering or ordering from maker notes if set
196
 
            my $byteOrder = $exifTool->Options('ByteOrder') || $exifTool->{MAKER_NOTE_BYTE_ORDER} || 'MM';
 
196
            my $byteOrder = $exifTool->Options('ByteOrder') ||
 
197
                $exifTool->GetNewValues('ExifByteOrder') || $exifTool->{MAKER_NOTE_BYTE_ORDER} || 'MM';
197
198
            unless (SetByteOrder($byteOrder)) {
198
199
                warn "Invalid byte order '$byteOrder'\n";
199
200
                $byteOrder = $exifTool->{MAKER_NOTE_BYTE_ORDER} || 'MM';