/usr/share/perl5/Image/Info/PNG.pm is in libimage-info-perl 1.41-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | package Image::Info::PNG;
# Copyright 1999-2000, Gisle Aas.
#
# This library is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
=begin register
MAGIC: /^\x89PNG\x0d\x0a\x1a\x0a/
Information from IHDR, PLTE, gAMA, pHYs, tEXt, tIME chunks are
extracted. The sequence of chunks are also given by the C<PNG_Chunks>
key.
=end register
=cut
use strict;
use vars qw/$VERSION/;
$VERSION = 1.03;
# Test for Compress::Zlib (for reading zTXt chunks)
my $have_zlib = 0;
eval {
require Compress::Zlib;
$have_zlib++;
};
# Test for Encode (for reading iTXt chunks)
my $have_encode = 0;
eval {
require Encode;
$have_encode++;
};
sub my_read
{
my($source, $len) = @_;
my $buf;
my $n = read($source, $buf, $len);
die "read failed: $!" unless defined $n;
die "short read ($len/$n) at pos " . tell($source) unless $n == $len;
$buf;
}
sub process_file
{
my($info, $fh) = @_;
my $signature = my_read($fh, 8);
die "Bad PNG signature"
unless $signature eq "\x89PNG\x0d\x0a\x1a\x0a";
$info->push_info(0, "file_media_type" => "image/png");
$info->push_info(0, "file_ext" => "png");
my @chunks;
while (1) {
my($len, $type) = unpack("Na4", my_read($fh, 8));
if (@chunks) {
my $last = $chunks[-1];
my $count = 1;
$count = $1 if $last =~ s/\s(\d+)$//;
if ($last eq $type) {
$count++;
$chunks[-1] = "$type $count";
}
else {
push(@chunks, $type);
}
}
else {
push(@chunks, $type);
}
last if $type eq "IEND";
my $data = my_read($fh, $len + 4);
my $crc = unpack("N", substr($data, -4, 4, ""));
if ($type eq "IHDR" && $len == 13) {
my($w, $h, $depth, $ctype, $compression, $filter, $interlace) =
unpack("NNCCCCC", $data);
$ctype = {
0 => "Gray",
2 => "RGB",
3 => "Indexed-RGB",
4 => "GrayA",
6 => "RGBA",
}->{$ctype} || "PNG-$ctype";
$compression = "Deflate" if $compression == 0;
$filter = "Adaptive" if $filter == 0;
$interlace = "Adam7" if $interlace == 1;
$info->push_info(0, "width", $w);
$info->push_info(0, "height", $h);
$info->push_info(0, "SampleFormat", "U$depth");
$info->push_info(0, "color_type", $ctype);
$info->push_info(0, "Compression", $compression);
$info->push_info(0, "PNG_Filter", $filter);
$info->push_info(0, "Interlace", $interlace)
if $interlace;
}
elsif ($type eq "PLTE") {
my @table;
while (length $data) {
push(@table, sprintf("#%02x%02x%02x",
unpack("C3", substr($data, 0, 3, ""))));
}
$info->push_info(0, "ColorPalette" => \@table);
}
elsif ($type eq "gAMA" && $len == 4) {
$info->push_info(0, "Gamma", unpack("N", $data)/100_000);
}
elsif ($type eq "pHYs" && $len == 9) {
my $res;
my($res_x, $res_y, $unit) = unpack("NNC", $data);
if (0 && $unit == 1) {
# convert to dpi
$unit = "dpi";
for ($res_x, $res_y) {
$_ *= 0.0254;
}
}
$res = ($res_x == $res_y) ? $res_x : "$res_x/$res_y";
if ($unit) {
if ($unit == 1) {
$res .= " dpm";
}
else {
$res .= " png-unit-$unit";
}
}
$info->push_info(0, "resolution" => $res)
}
elsif ($type eq "tEXt" || $type eq "zTXt" || $type eq "iTXt") {
my($key, $val) = split(/\0/, $data, 2);
my($method,$ctext,$is_i);
if ($type eq "iTXt") {
++$is_i;
(my $compressed, $method, my $lang, my $trans, $ctext)
= unpack "CaZ*Z*a*", $val;
unless ($compressed) {
undef $method;
$val = $ctext;
}
}
elsif ($type eq "zTXt") {
($method,$ctext) = split(//, $val, 2);
}
if (defined $method) {
if ($have_zlib && $method eq "\0") {
$val = Compress::Zlib::uncompress($ctext);
} else {
undef $val;
}
}
if ($is_i) {
if ($have_encode) {
$val = Encode::decode("UTF-8", $val);
} else {
undef $val;
}
}
if (defined $val) {
# XXX should make sure $key is not in conflict with any
# other key we might generate
$info->push_info(0, $key, $val);
} else {
$info->push_info(0, "Chunk-$type" => $data);
}
}
elsif ($type eq "tIME" && $len == 7) {
$info->push_info(0, "LastModificationTime",
sprintf("%04d-%02d-%02d %02d:%02d:%02d",
unpack("nC5", $data)));
}
elsif ($type eq "sBIT") {
$info->push_info(0, "SignificantBits" => unpack("C*", $data));
}
elsif ($type eq "IDAT") {
# ignore
}
else {
$info->push_info(0, "Chunk-$type" => $data);
}
}
$info->push_info(0, "PNG_Chunks", @chunks);
unless ($info->get_info(0, "resolution")) {
$info->push_info(0, "resolution", "1/1");
}
}
1;
|