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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
|
#!perl -w
use strict;
use lib 't';
use Imager qw(:all);
use Test::More tests => 53;
init_log("testout/t101jpeg.log",1);
my $green=i_color_new(0,255,0,255);
my $blue=i_color_new(0,0,255,255);
my $red=i_color_new(255,0,0,255);
my $img=Imager::ImgRaw::new(150,150,3);
my $cmpimg=Imager::ImgRaw::new(150,150,3);
i_box_filled($img,70,25,130,125,$green);
i_box_filled($img,20,25,80,125,$blue);
i_arc($img,75,75,30,0,361,$red);
i_conv($img,[0.1, 0.2, 0.4, 0.2, 0.1]);
i_has_format("jpeg") && print "# has jpeg\n";
if (!i_has_format("jpeg")) {
# previously we'd crash if we tried to save/read an image via the OO
# interface when there was no jpeg support
SKIP:
{
my $im = Imager->new;
ok(!$im->read(file=>"testimg/base.jpg"), "should fail to read jpeg");
cmp_ok($im->errstr, '=~', qr/format 'jpeg' not supported/, "check no jpeg message");
$im = Imager->new(xsize=>2, ysize=>2);
ok(!$im->write(file=>"testout/nojpeg.jpg"), "should fail to write jpeg");
cmp_ok($im->errstr, '=~', qr/format not supported/, "check no jpeg message");
skip("no jpeg support", 49);
}
} else {
open(FH,">testout/t101.jpg") || die "cannot open testout/t101.jpg for writing\n";
binmode(FH);
my $IO = Imager::io_new_fd(fileno(FH));
ok(i_writejpeg_wiol($img,$IO,30), "write jpeg low level");
close(FH);
open(FH, "testout/t101.jpg") || die "cannot open testout/t101.jpg\n";
binmode(FH);
$IO = Imager::io_new_fd(fileno(FH));
($cmpimg,undef) = i_readjpeg_wiol($IO);
close(FH);
print "$cmpimg\n";
my $diff = sqrt(i_img_diff($img,$cmpimg))/150*150;
print "# jpeg average mean square pixel difference: ",$diff,"\n";
ok($cmpimg, "read jpeg low level");
ok($diff < 10000, "difference between original and jpeg within bounds");
Imager::log_entry("Starting 4\n", 1);
my $imoo = Imager->new;
ok($imoo->read(file=>'testout/t101.jpg'), "read jpeg OO");
ok($imoo->write(file=>'testout/t101_oo.jpg'), "write jpeg OO");
Imager::log_entry("Starting 5\n", 1);
my $oocmp = Imager->new;
ok($oocmp->read(file=>'testout/t101_oo.jpg'), "read jpeg OO for comparison");
$diff = sqrt(i_img_diff($imoo->{IMG},$oocmp->{IMG}))/150*150;
print "# OO image difference $diff\n";
ok($diff < 10000, "difference between original and jpeg within bounds");
# write failure test
open FH, "< testout/t101.jpg" or die "Cannot open testout/t101.jpg: $!";
binmode FH;
ok(!$imoo->write(fd=>fileno(FH), type=>'jpeg'), 'failure handling');
close FH;
print "# ",$imoo->errstr,"\n";
# check that the i_format tag is set
my @fmt = $imoo->tags(name=>'i_format');
is($fmt[0], 'jpeg', 'i_format tag');
{ # check file limits are checked
my $limit_file = "testout/t101.jpg";
ok(Imager->set_file_limits(reset=>1, width=>149), "set width limit 149");
my $im = Imager->new;
ok(!$im->read(file=>$limit_file),
"should fail read due to size limits");
print "# ",$im->errstr,"\n";
like($im->errstr, qr/image width/, "check message");
ok(Imager->set_file_limits(reset=>1, height=>149), "set height limit 149");
ok(!$im->read(file=>$limit_file),
"should fail read due to size limits");
print "# ",$im->errstr,"\n";
like($im->errstr, qr/image height/, "check message");
ok(Imager->set_file_limits(reset=>1, width=>150), "set width limit 150");
ok($im->read(file=>$limit_file),
"should succeed - just inside width limit");
ok(Imager->set_file_limits(reset=>1, height=>150), "set height limit 150");
ok($im->read(file=>$limit_file),
"should succeed - just inside height limit");
# 150 x 150 x 3 channel image uses 67500 bytes
ok(Imager->set_file_limits(reset=>1, bytes=>67499),
"set bytes limit 67499");
ok(!$im->read(file=>$limit_file),
"should fail - too many bytes");
print "# ",$im->errstr,"\n";
like($im->errstr, qr/storage size/, "check error message");
ok(Imager->set_file_limits(reset=>1, bytes=>67500),
"set bytes limit 67500");
ok($im->read(file=>$limit_file),
"should succeed - just inside bytes limit");
Imager->set_file_limits(reset=>1);
}
SKIP:
{
# we don't test them all
my %expected_tags =
(
exif_date_time_original => "2005:11:25 00:00:00",
exif_flash => 0,
exif_image_description => "Imager Development Notes",
exif_make => "Canon",
exif_model => "CanoScan LiDE 35",
exif_resolution_unit => 2,
exif_resolution_unit_name => "inches",
exif_user_comment => " Part of notes from reworking i_arc() and friends.",
exif_white_balance => 0,
exif_white_balance_name => "Auto white balance",
);
# exif tests
Imager::i_exif_enabled()
or skip("no exif support", scalar keys %expected_tags);
my $im = Imager->new;
$im->read(file=>"testimg/exiftest.jpg")
or skip("Could not read test image:".$im->errstr, scalar keys %expected_tags);
for my $key (keys %expected_tags) {
is($expected_tags{$key}, $im->tags(name => $key),
"test value of exif tag $key");
}
}
{
# tests that the density values are set and read correctly
# tests jpeg_comment too
my @density_tests =
(
[ 't101cm100.jpg',
{
jpeg_density_unit => 2,
i_xres => 254,
i_yres => 254
},
{
jpeg_density_unit => 2,
i_xres => 254,
i_yres => 254,
i_aspect_only => undef,
},
],
[
't101xonly.jpg',
{
i_xres => 100,
},
{
i_xres => 100,
i_yres => 100,
jpeg_density_unit => 1,
i_aspect_only => undef,
},
],
[
't101yonly.jpg',
{
i_yres => 100,
},
{
i_xres => 100,
i_yres => 100,
jpeg_density_unit => 1,
i_aspect_only => undef,
},
],
[
't101asponly.jpg',
{
i_xres => 50,
i_yres => 100,
i_aspect_only => 1,
},
{
i_xres => 50,
i_yres => 100,
i_aspect_only => 1,
jpeg_density_unit => 0,
},
],
[
't101com.jpg',
{
jpeg_comment => 'test comment'
},
],
);
print "# test density tags\n";
# I don't care about the content
my $base_im = Imager->new(xsize => 10, ysize => 10);
for my $test (@density_tests) {
my ($filename, $out_tags, $expect_tags) = @$test;
$expect_tags ||= $out_tags;
my $work = $base_im->copy;
for my $key (keys %$out_tags) {
$work->addtag(name => $key, value => $out_tags->{$key});
}
ok($work->write(file=>"testout/$filename", type=>'jpeg'),
"save $filename");
my $check = Imager->new;
ok($check->read(file=> "testout/$filename"),
"read $filename");
my %tags;
for my $key (keys %$expect_tags) {
$tags{$key} = $check->tags(name=>$key);
}
is_deeply($expect_tags, \%tags, "check tags for $filename");
}
}
{ # Issue # 17981
# the test image has a zero-length user_comment field
# the code would originally attempt to convert '\0' to ' '
# for the first 8 bytes, even if the string was less than
# 8 bytes long
my $im = Imager->new;
ok($im->read(file => 'testimg/209_yonge.jpg', type=>'jpeg'),
"test read of image with invalid exif_user_comment");
is($im->tags(name=>'exif_user_comment'), '',
"check exif_user_comment set correctly");
}
{ # Issue # 18397
# attempting to write a 4 channel image to a bufchain would
# cause a seg fault.
# it should fail still
my $im = Imager->new(xsize => 10, ysize => 10, channels => 4);
my $data;
ok(!$im->write(data => \$data, type => 'jpeg'),
"should fail to write but shouldn't crash");
is($im->errstr, "only 1 or 3 channels images can be saved as JPEG",
"check the error message");
}
}
|