#------------------------------------------------------------------------------ # File: WritePNG.pl # # Description: Write PNG meta information # # Revisions: 09/16/2005 - P. Harvey Created # # References: 1) http://www.libpng.org/pub/png/spec/1.2/ #------------------------------------------------------------------------------ package Image::ExifTool::PNG; use strict; #------------------------------------------------------------------------------ # Calculate CRC or update running CRC (ref 1) # Inputs: 0) data reference, 1) running crc to update (undef intially) # 2) data position (undef for 0), 3) data length (undef for all data), # Returns: updated CRC my @crcTable; sub CalculateCRC($;$$$) { my ($dataPt, $crc, $pos, $len) = @_; $crc = 0 unless defined $crc; $pos = 0 unless defined $pos; $len = length($$dataPt) - $pos unless defined $len; $crc ^= 0xffffffff; # undo 1's complement # build lookup table unless done already unless (@crcTable) { my ($c, $n, $k); for ($n=0; $n<256; ++$n) { for ($k=0, $c=$n; $k<8; ++$k) { $c = ($c & 1) ? 0xedb88320 ^ ($c >> 1) : $c >> 1; } $crcTable[$n] = $c; } } # calculate the CRC foreach (unpack("x${pos}C$len", $$dataPt)) { $crc = $crcTable[($crc^$_) & 0xff] ^ ($crc >> 8); } return $crc ^ 0xffffffff; # return 1's complement } #------------------------------------------------------------------------------ # Encode data in ASCII Hex # Inputs: 0) input data reference # Returns: Hex-encoded data (max 72 chars per line) sub HexEncode($) { my $dataPt = shift; my $len = length($$dataPt); my $hex = ''; my $pos; for ($pos = 0; $pos < $len; $pos += 36) { my $n = $len - $pos; $n > 36 and $n = 36; $hex .= unpack('H*',substr($$dataPt,$pos,$n)) . "\n"; } return $hex; } #------------------------------------------------------------------------------ # Write profile to tEXt or zTXt chunk (zTXt if Zlib is available) # Inputs: 0) outfile, 1) Raw profile type, 2) data ref # 3) profile header type (undef if not a text profile) # Returns: 1 on success sub WriteProfile($$$;$) { my ($outfile, $rawType, $dataPt, $profile) = @_; my ($buff, $prefix, $chunk, $deflate); if (eval 'require Compress::Zlib') { $deflate = Compress::Zlib::deflateInit(); } if (not defined $profile) { # write ICC profile as compressed iCCP chunk if possible return 0 unless $deflate; $buff = $deflate->deflate($$dataPt); return 0 unless defined $buff; $buff .= $deflate->flush(); my %rawTypeChunk = ( icm => 'iCCP' ); $chunk = $rawTypeChunk{$rawType} or return 0; $prefix = "$rawType\0\0"; $dataPt = \$buff; } else { # write as ASCII-hex encoded profile in tEXt or zTXt chunk my $txtHdr = sprintf("\n$profile profile\n%8d\n", length($$dataPt)); $buff = $txtHdr . HexEncode($dataPt); $chunk = 'tEXt'; # write as tEXt if deflate not available $prefix = "Raw profile type $rawType\0"; $dataPt = \$buff; # write profile as zTXt chunk if possible if ($deflate) { my $buf2 = $deflate->deflate($buff); if (defined $buf2) { $dataPt = \$buf2; $buf2 .= $deflate->flush(); $chunk = 'zTXt'; $prefix .= "\0"; # compression type byte (0=deflate) } } } my $hdr = pack('Na4', length($prefix) + length($$dataPt), $chunk) . $prefix; my $crc = CalculateCRC(\$hdr, undef, 4); $crc = CalculateCRC($dataPt, $crc); return Write($outfile, $hdr, $$dataPt, pack('N',$crc)); } #------------------------------------------------------------------------------ # Add iCCP to the PNG image if necessary (must come before PLTE and IDAT) # Inputs: 0) ExifTool object ref, 1) output file or scalar ref # Returns: true on success sub Add_iCCP($$) { my ($exifTool, $outfile) = @_; if ($exifTool->{ADD_DIRS}->{ICC_Profile}) { # write new ICC data my $tagTablePtr = GetTagTable('Image::ExifTool::ICC_Profile::Main'); my %dirInfo = ( Parent => 'PNG', DirName => 'ICC_Profile' ); my $buff = $exifTool->WriteDirectory(\%dirInfo, $tagTablePtr); if (defined $buff and length $buff and WriteProfile($outfile, 'icm', \$buff)) { $exifTool->VPrint(0, "Created ICC profile\n"); delete $exifTool->{ADD_DIRS}->{ICC_Profile}; # don't add it again } } return 1; } #------------------------------------------------------------------------------ # Add any outstanding new chunks to the PNG image # Inputs: 0) ExifTool object ref, 1) output file or scalar ref # Returns: true on success sub AddChunks($$) { my ($exifTool, $outfile) = @_; # write any outstanding PNG tags my $addTags = $exifTool->{ADD_PNG}; delete $exifTool->{ADD_PNG}; my ($tag, $dir, $err, $tagTablePtr); foreach $tag (sort keys %$addTags) { my $tagInfo = $$addTags{$tag}; my $newValueHash = $exifTool->GetNewValueHash($tagInfo); # (always create native PNG information, so don't check IsCreating()) next unless Image::ExifTool::IsOverwriting($newValueHash) > 0; my $val = Image::ExifTool::GetNewValues($newValueHash); if (defined $val) { my $data; if ($$tagInfo{Table} eq \%Image::ExifTool::PNG::TextualData) { $data = "tEXt$tag\0$val"; } else { $data = "$tag$val"; } # write as compressed zTXt if specified if ($exifTool->Options('Compress')) { my $warn; if (eval 'require Compress::Zlib') { my $buff; my $deflate = Compress::Zlib::deflateInit(); $buff = $deflate->deflate($val) if $deflate; if (defined $buff) { $buff .= $deflate->flush(); # only write as zTXt if it actually saves space if (length($buff) < length($val) - 1) { $data = "zTXt$tag\0\0$buff"; } else { $warn = 'uncompressed data is smaller'; } } else { $warn = 'deflate error'; } } else { $warn = 'Compress::Zlib not available'; } $warn and $exifTool->Warn("PNG:$$tagInfo{Name} not compressed ($warn)", 1); } my $hdr = pack('N', length($data) - 4); my $cbuf = pack('N', CalculateCRC(\$data, undef)); Write($outfile, $hdr, $data, $cbuf) or $err = 1; $exifTool->VPrint(1, " + PNG:$$tagInfo{Name} = '",$exifTool->Printable($val),"'\n"); ++$exifTool->{CHANGED}; } } $addTags = { }; # prevent from adding tags again # create any necessary directories foreach $dir (sort keys %{$exifTool->{ADD_DIRS}}) { my $buff; my %dirInfo = ( Parent => 'PNG', DirName => $dir, ); if ($dir eq 'IFD0') { $exifTool->VPrint(0, "Creating EXIF profile:\n"); $exifTool->{TIFF_TYPE} = 'APP1'; $tagTablePtr = GetTagTable('Image::ExifTool::Exif::Main'); # use specified byte ordering or ordering from maker notes if set my $byteOrder = $exifTool->Options('ByteOrder') || $exifTool->GetNewValues('ExifByteOrder') || $exifTool->{MAKER_NOTE_BYTE_ORDER} || 'MM'; unless (SetByteOrder($byteOrder)) { warn "Invalid byte order '$byteOrder'\n"; $byteOrder = $exifTool->{MAKER_NOTE_BYTE_ORDER} || 'MM'; SetByteOrder($byteOrder); } $dirInfo{NewDataPos} = 8, # new data will come after TIFF header $buff = $exifTool->WriteDirectory(\%dirInfo, $tagTablePtr); if (defined $buff and length $buff) { my $tiffHdr = $byteOrder . Set16u(42) . Set32u(8); $buff = $Image::ExifTool::exifAPP1hdr . $tiffHdr . $buff; WriteProfile($outfile, 'APP1', \$buff, 'generic') or $err = 1; } } elsif ($dir eq 'XMP') { $exifTool->VPrint(0, "Creating XMP iTXt chunk:\n"); $tagTablePtr = GetTagTable('Image::ExifTool::XMP::Main'); $dirInfo{ReadOnly} = 1; $buff = $exifTool->WriteDirectory(\%dirInfo, $tagTablePtr); if (defined $buff and length $buff and # the packet is read-only (because of CRC) Image::ExifTool::XMP::ValidateXMP(\$buff, 'r')) { # (previously, XMP was created as a non-standard XMP profile chunk) # $buff = $Image::ExifTool::xmpAPP1hdr . $buff; # WriteProfile($outfile, 'APP1', \$buff, 'generic') or $err = 1; # (but now write XMP iTXt chunk according to XMP specification) $buff = "iTXtXML:com.adobe.xmp\0\0\0\0\0" . $buff; my $hdr = pack('N', length($buff) - 4); my $cbuf = pack('N', CalculateCRC(\$buff, undef)); Write($outfile, $hdr, $buff, $cbuf) or $err = 1; } } elsif ($dir eq 'IPTC') { $exifTool->VPrint(0, "Creating IPTC profile:\n"); # write new IPTC data $tagTablePtr = GetTagTable('Image::ExifTool::Photoshop::Main'); $buff = $exifTool->WriteDirectory(\%dirInfo, $tagTablePtr); if (defined $buff and length $buff) { WriteProfile($outfile, 'iptc', \$buff, 'IPTC') or $err = 1; } } elsif ($dir eq 'ICC_Profile') { $exifTool->VPrint(0, "Creating ICC profile:\n"); # write new ICC data (only done if we couldn't create iCCP chunk) $tagTablePtr = GetTagTable('Image::ExifTool::ICC_Profile::Main'); $buff = $exifTool->WriteDirectory(\%dirInfo, $tagTablePtr); if (defined $buff and length $buff) { WriteProfile($outfile, 'icm', \$buff, 'ICC') or $err = 1; $exifTool->Warn('Wrote ICC as generic profile (no Compress::Zlib)'); } } } $exifTool->{ADD_DIRS} = { }; # prevent from adding dirs again return not $err; } 1; # end __END__ =head1 NAME Image::ExifTool::WritePNG.pl - Write PNG meta information =head1 SYNOPSIS These routines are autoloaded by Image::ExifTool::PNG. =head1 DESCRIPTION This file contains routines to write PNG metadata. =head1 NOTES Compress::Zlib is required to write compressed text. Existing text tags are always rewritten in their original form (compressed zTXt, uncompressed tEXt or internation iTXt), so pre-existing compressed information can only be modified if Compress::Zlib is available. Newly created textual information is written in uncompressed tEXt form by default, or as compressed zTXt if the Compress option is used and Compress::Zlib is available (but only if the resulting compressed data is smaller than the original text, which isn't always the case for short text strings). =head1 AUTHOR Copyright 2003-2008, Phil Harvey (phil at owl.phy.queensu.ca) This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO L, L =cut