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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
|
package Imager::Test;
use strict;
use Test::Builder;
require Exporter;
use vars qw(@ISA @EXPORT_OK);
@ISA = qw(Exporter);
@EXPORT_OK =
qw(
diff_text_with_nul
test_image_raw
test_image_16
test_image
test_image_double
is_color1
is_color3
is_color4
is_color_close3
is_fcolor4
color_cmp
is_image
is_imaged
is_image_similar
isnt_image
image_bounds_checks
mask_tests
test_colorf_gpix
test_color_gpix
test_colorf_glin);
sub diff_text_with_nul {
my ($desc, $text1, $text2, @params) = @_;
my $builder = Test::Builder->new;
print "# $desc\n";
my $imbase = Imager->new(xsize => 100, ysize => 100);
my $imcopy = Imager->new(xsize => 100, ysize => 100);
$builder->ok($imbase->string(x => 5, 'y' => 50, size => 20,
string => $text1,
@params), "$desc - draw text1");
$builder->ok($imcopy->string(x => 5, 'y' => 50, size => 20,
string => $text2,
@params), "$desc - draw text2");
$builder->isnt_num(Imager::i_img_diff($imbase->{IMG}, $imcopy->{IMG}), 0,
"$desc - check result different");
}
sub is_color3($$$$$) {
my ($color, $red, $green, $blue, $comment) = @_;
my $builder = Test::Builder->new;
unless (defined $color) {
$builder->ok(0, $comment);
$builder->diag("color is undef");
return;
}
unless ($color->can('rgba')) {
$builder->ok(0, $comment);
$builder->diag("color is not a color object");
return;
}
my ($cr, $cg, $cb) = $color->rgba;
unless ($builder->ok($cr == $red && $cg == $green && $cb == $blue, $comment)) {
$builder->diag(<<END_DIAG);
Color mismatch:
Red: $red vs $cr
Green: $green vs $cg
Blue: $blue vs $cb
END_DIAG
return;
}
return 1;
}
sub is_color_close3($$$$$$) {
my ($color, $red, $green, $blue, $tolerance, $comment) = @_;
my $builder = Test::Builder->new;
unless (defined $color) {
$builder->ok(0, $comment);
$builder->diag("color is undef");
return;
}
unless ($color->can('rgba')) {
$builder->ok(0, $comment);
$builder->diag("color is not a color object");
return;
}
my ($cr, $cg, $cb) = $color->rgba;
unless ($builder->ok(abs($cr - $red) <= $tolerance
&& abs($cg - $green) <= $tolerance
&& abs($cb - $blue) <= $tolerance, $comment)) {
$builder->diag(<<END_DIAG);
Color out of tolerance ($tolerance):
Red: expected $red vs received $cr
Green: expected $green vs received $cg
Blue: expected $blue vs received $cb
END_DIAG
return;
}
return 1;
}
sub is_color4($$$$$$) {
my ($color, $red, $green, $blue, $alpha, $comment) = @_;
my $builder = Test::Builder->new;
unless (defined $color) {
$builder->ok(0, $comment);
$builder->diag("color is undef");
return;
}
unless ($color->can('rgba')) {
$builder->ok(0, $comment);
$builder->diag("color is not a color object");
return;
}
my ($cr, $cg, $cb, $ca) = $color->rgba;
unless ($builder->ok($cr == $red && $cg == $green && $cb == $blue
&& $ca == $alpha, $comment)) {
$builder->diag(<<END_DIAG);
Color mismatch:
Red: $cr vs $red
Green: $cg vs $green
Blue: $cb vs $blue
Alpha: $ca vs $alpha
END_DIAG
return;
}
return 1;
}
sub is_fcolor4($$$$$$;$) {
my ($color, $red, $green, $blue, $alpha, $comment_or_diff, $comment_or_undef) = @_;
my ($comment, $mindiff);
if (defined $comment_or_undef) {
( $mindiff, $comment ) = ( $comment_or_diff, $comment_or_undef )
}
else {
( $mindiff, $comment ) = ( 0.001, $comment_or_diff )
}
my $builder = Test::Builder->new;
unless (defined $color) {
$builder->ok(0, $comment);
$builder->diag("color is undef");
return;
}
unless ($color->can('rgba')) {
$builder->ok(0, $comment);
$builder->diag("color is not a color object");
return;
}
my ($cr, $cg, $cb, $ca) = $color->rgba;
unless ($builder->ok(abs($cr - $red) <= $mindiff
&& abs($cg - $green) <= $mindiff
&& abs($cb - $blue) <= $mindiff
&& abs($ca - $alpha) <= $mindiff, $comment)) {
$builder->diag(<<END_DIAG);
Color mismatch:
Red: $cr vs $red
Green: $cg vs $green
Blue: $cb vs $blue
Alpha: $ca vs $alpha
END_DIAG
return;
}
return 1;
}
sub is_color1($$$) {
my ($color, $grey, $comment) = @_;
my $builder = Test::Builder->new;
unless (defined $color) {
$builder->ok(0, $comment);
$builder->diag("color is undef");
return;
}
unless ($color->can('rgba')) {
$builder->ok(0, $comment);
$builder->diag("color is not a color object");
return;
}
my ($cgrey) = $color->rgba;
unless ($builder->ok($cgrey == $grey, $comment)) {
$builder->diag(<<END_DIAG);
Color mismatch:
Grey: $grey vs $cgrey
END_DIAG
return;
}
return 1;
}
sub test_image_raw {
my $green=Imager::i_color_new(0,255,0,255);
my $blue=Imager::i_color_new(0,0,255,255);
my $red=Imager::i_color_new(255,0,0,255);
my $img=Imager::ImgRaw::new(150,150,3);
Imager::i_box_filled($img,70,25,130,125,$green);
Imager::i_box_filled($img,20,25,80,125,$blue);
Imager::i_arc($img,75,75,30,0,361,$red);
Imager::i_conv($img,[0.1, 0.2, 0.4, 0.2, 0.1]);
$img;
}
sub test_image {
my $green = Imager::Color->new(0, 255, 0, 255);
my $blue = Imager::Color->new(0, 0, 255, 255);
my $red = Imager::Color->new(255, 0, 0, 255);
my $img = Imager->new(xsize => 150, ysize => 150);
$img->box(filled => 1, color => $green, box => [ 70, 24, 130, 124 ]);
$img->box(filled => 1, color => $blue, box => [ 20, 26, 80, 126 ]);
$img->arc(x => 75, y => 75, r => 30, color => $red);
$img->filter(type => 'conv', coef => [ 0.1, 0.2, 0.4, 0.2, 0.1 ]);
$img;
}
sub test_image_16 {
my $green = Imager::Color->new(0, 255, 0, 255);
my $blue = Imager::Color->new(0, 0, 255, 255);
my $red = Imager::Color->new(255, 0, 0, 255);
my $img = Imager->new(xsize => 150, ysize => 150, bits => 16);
$img->box(filled => 1, color => $green, box => [ 70, 25, 130, 125 ]);
$img->box(filled => 1, color => $blue, box => [ 20, 25, 80, 125 ]);
$img->arc(x => 75, y => 75, r => 30, color => $red);
$img->filter(type => 'conv', coef => [ 0.1, 0.2, 0.4, 0.2, 0.1 ]);
$img;
}
sub test_image_double {
my $green = Imager::Color->new(0, 255, 0, 255);
my $blue = Imager::Color->new(0, 0, 255, 255);
my $red = Imager::Color->new(255, 0, 0, 255);
my $img = Imager->new(xsize => 150, ysize => 150, bits => 'double');
$img->box(filled => 1, color => $green, box => [ 70, 25, 130, 125 ]);
$img->box(filled => 1, color => $blue, box => [ 20, 25, 80, 125 ]);
$img->arc(x => 75, y => 75, r => 30, color => $red);
$img->filter(type => 'conv', coef => [ 0.1, 0.2, 0.4, 0.2, 0.1 ]);
$img;
}
sub _low_image_diff_check {
my ($left, $right, $comment) = @_;
my $builder = Test::Builder->new;
unless (defined $left) {
$builder->ok(0, $comment);
$builder->diag("left is undef");
return;
}
unless (defined $right) {
$builder->ok(0, $comment);
$builder->diag("right is undef");
return;
}
unless ($left->{IMG}) {
$builder->ok(0, $comment);
$builder->diag("left image has no low level object");
return;
}
unless ($right->{IMG}) {
$builder->ok(0, $comment);
$builder->diag("right image has no low level object");
return;
}
unless ($left->getwidth == $right->getwidth) {
$builder->ok(0, $comment);
$builder->diag("left width " . $left->getwidth . " vs right width "
. $right->getwidth);
return;
}
unless ($left->getheight == $right->getheight) {
$builder->ok(0, $comment);
$builder->diag("left height " . $left->getheight . " vs right height "
. $right->getheight);
return;
}
unless ($left->getchannels == $right->getchannels) {
$builder->ok(0, $comment);
$builder->diag("left channels " . $left->getchannels . " vs right channels "
. $right->getchannels);
return;
}
return 1;
}
sub is_image_similar($$$$) {
my ($left, $right, $limit, $comment) = @_;
{
local $Test::Builder::Level = $Test::Builder::Level + 1;
_low_image_diff_check($left, $right, $comment)
or return;
}
my $builder = Test::Builder->new;
my $diff = Imager::i_img_diff($left->{IMG}, $right->{IMG});
if ($diff > $limit) {
$builder->ok(0, $comment);
$builder->diag("image data difference > $limit - $diff");
if ($limit == 0) {
# find the first mismatch
PIXELS:
for my $y (0 .. $left->getheight()-1) {
for my $x (0.. $left->getwidth()-1) {
my @lsamples = $left->getsamples(x => $x, y => $y, width => 1);
my @rsamples = $right->getsamples(x => $x, y => $y, width => 1);
if ("@lsamples" ne "@rsamples") {
$builder->diag("first mismatch at ($x, $y) - @lsamples vs @rsamples");
last PIXELS;
}
}
}
}
return;
}
return $builder->ok(1, $comment);
}
sub is_image($$$) {
my ($left, $right, $comment) = @_;
local $Test::Builder::Level = $Test::Builder::Level + 1;
return is_image_similar($left, $right, 0, $comment);
}
sub is_imaged($$$) {
my ($left, $right, $comment) = @_;
{
local $Test::Builder::Level = $Test::Builder::Level + 1;
_low_image_diff_check($left, $right, $comment)
or return;
}
my $builder = Test::Builder->new;
my $diff = Imager::i_img_diffd($left->{IMG}, $right->{IMG});
if ($diff > 0) {
$builder->ok(0, $comment);
$builder->diag("image data difference: $diff");
# find the first mismatch
PIXELS:
for my $y (0 .. $left->getheight()-1) {
for my $x (0.. $left->getwidth()-1) {
my @lsamples = $left->getsamples(x => $x, y => $y, width => 1);
my @rsamples = $right->getsamples(x => $x, y => $y, width => 1);
if ("@lsamples" ne "@rsamples") {
$builder->diag("first mismatch at ($x, $y) - @lsamples vs @rsamples");
last PIXELS;
}
}
}
return;
}
return $builder->ok(1, $comment);
}
sub isnt_image {
my ($left, $right, $comment) = @_;
my $builder = Test::Builder->new;
my $diff = Imager::i_img_diff($left->{IMG}, $right->{IMG});
return $builder->ok($diff, "$comment");
}
sub image_bounds_checks {
my $im = shift;
my $builder = Test::Builder->new;
$builder->ok(!$im->getpixel(x => -1, y => 0), 'bounds check get (-1, 0)');
$builder->ok(!$im->getpixel(x => 10, y => 0), 'bounds check get (10, 0)');
$builder->ok(!$im->getpixel(x => 0, y => -1), 'bounds check get (0, -1)');
$builder->ok(!$im->getpixel(x => 0, y => 10), 'bounds check get (0, 10)');
$builder->ok(!$im->getpixel(x => -1, y => 0), 'bounds check get (-1, 0) float');
$builder->ok(!$im->getpixel(x => 10, y => 0), 'bounds check get (10, 0) float');
$builder->ok(!$im->getpixel(x => 0, y => -1), 'bounds check get (0, -1) float');
$builder->ok(!$im->getpixel(x => 0, y => 10), 'bounds check get (0, 10) float');
my $black = Imager::Color->new(0, 0, 0);
require Imager::Color::Float;
my $blackf = Imager::Color::Float->new(0, 0, 0);
$builder->ok(!$im->setpixel(x => -1, y => 0, color => $black), 'bounds check set (-1, 0)');
$builder->ok(!$im->setpixel(x => 10, y => 0, color => $black), 'bounds check set (10, 0)');
$builder->ok(!$im->setpixel(x => 0, y => -1, color => $black), 'bounds check set (0, -1)');
$builder->ok(!$im->setpixel(x => 0, y => 10, color => $black), 'bounds check set (0, 10)');
$builder->ok(!$im->setpixel(x => -1, y => 0, color => $blackf), 'bounds check set (-1, 0) float');
$builder->ok(!$im->setpixel(x => 10, y => 0, color => $blackf), 'bounds check set (10, 0) float');
$builder->ok(!$im->setpixel(x => 0, y => -1, color => $blackf), 'bounds check set (0, -1) float');
$builder->ok(!$im->setpixel(x => 0, y => 10, color => $blackf), 'bounds check set (0, 10) float');
}
sub test_colorf_gpix {
my ($im, $x, $y, $expected, $epsilon, $comment) = @_;
my $builder = Test::Builder->new;
defined $comment or $comment = '';
my $c = Imager::i_gpixf($im, $x, $y);
unless ($c) {
$builder->ok(0, "$comment - retrieve color at ($x,$y)");
return;
}
unless ($builder->ok(colorf_cmp($c, $expected, $epsilon) == 0,
"$comment - got right color ($x, $y)")) {
my @c = $c->rgba;
my @exp = $expected->rgba;
$builder->diag(<<EOS);
# got: ($c[0], $c[1], $c[2])
# expected: ($exp[0], $exp[1], $exp[2])
EOS
}
1;
}
sub test_color_gpix {
my ($im, $x, $y, $expected, $comment) = @_;
my $builder = Test::Builder->new;
defined $comment or $comment = '';
my $c = Imager::i_get_pixel($im, $x, $y);
unless ($c) {
$builder->ok(0, "$comment - retrieve color at ($x,$y)");
return;
}
unless ($builder->ok(color_cmp($c, $expected) == 0,
"got right color ($x, $y)")) {
my @c = $c->rgba;
my @exp = $expected->rgba;
$builder->diag(<<EOS);
# got: ($c[0], $c[1], $c[2])
# expected: ($exp[0], $exp[1], $exp[2])
EOS
return;
}
return 1;
}
sub test_colorf_glin {
my ($im, $x, $y, $pels, $comment) = @_;
my $builder = Test::Builder->new;
my @got = Imager::i_glinf($im, $x, $x+@$pels, $y);
@got == @$pels
or return $builder->is_num(scalar(@got), scalar(@$pels), "$comment - pixels retrieved");
return $builder->ok(!grep(colorf_cmp($pels->[$_], $got[$_], 0.005), 0..$#got),
"$comment - check colors ($x, $y)");
}
sub colorf_cmp {
my ($c1, $c2, $epsilon) = @_;
defined $epsilon or $epsilon = 0;
my @s1 = $c1->rgba;
my @s2 = $c2->rgba;
# print "# (",join(",", @s1[0..2]),") <=> (",join(",", @s2[0..2]),")\n";
return abs($s1[0]-$s2[0]) >= $epsilon && $s1[0] <=> $s2[0]
|| abs($s1[1]-$s2[1]) >= $epsilon && $s1[1] <=> $s2[1]
|| abs($s1[2]-$s2[2]) >= $epsilon && $s1[2] <=> $s2[2];
}
sub color_cmp {
my ($c1, $c2) = @_;
my @s1 = $c1->rgba;
my @s2 = $c2->rgba;
return $s1[0] <=> $s2[0]
|| $s1[1] <=> $s2[1]
|| $s1[2] <=> $s2[2];
}
# these test the action of the channel mask on the image supplied
# which should be an OO image.
sub mask_tests {
my ($im, $epsilon) = @_;
my $builder = Test::Builder->new;
defined $epsilon or $epsilon = 0;
# we want to check all four of ppix() and plin(), ppix() and plinf()
# basic test procedure:
# first using default/all 1s mask, set to white
# make sure we got white
# set mask to skip a channel, set to grey
# make sure only the right channels set
print "# channel mask tests\n";
# 8-bit color tests
my $white = Imager::NC(255, 255, 255);
my $grey = Imager::NC(128, 128, 128);
my $white_grey = Imager::NC(128, 255, 128);
print "# with ppix\n";
$builder->ok($im->setmask(mask=>~0), "set to default mask");
$builder->ok($im->setpixel(x=>0, 'y'=>0, color=>$white), "set to white all channels");
test_color_gpix($im->{IMG}, 0, 0, $white, "ppix");
$builder->ok($im->setmask(mask=>0xF-0x2), "set channel to exclude channel1");
$builder->ok($im->setpixel(x=>0, 'y'=>0, color=>$grey), "set to grey, no channel 2");
test_color_gpix($im->{IMG}, 0, 0, $white_grey, "ppix masked");
print "# with plin\n";
$builder->ok($im->setmask(mask=>~0), "set to default mask");
$builder->ok($im->setscanline(x=>0, 'y'=>1, pixels => [$white]),
"set to white all channels");
test_color_gpix($im->{IMG}, 0, 1, $white, "plin");
$builder->ok($im->setmask(mask=>0xF-0x2), "set channel to exclude channel1");
$builder->ok($im->setscanline(x=>0, 'y'=>1, pixels=>[$grey]),
"set to grey, no channel 2");
test_color_gpix($im->{IMG}, 0, 1, $white_grey, "plin masked");
# float color tests
my $whitef = Imager::NCF(1.0, 1.0, 1.0);
my $greyf = Imager::NCF(0.5, 0.5, 0.5);
my $white_greyf = Imager::NCF(0.5, 1.0, 0.5);
print "# with ppixf\n";
$builder->ok($im->setmask(mask=>~0), "set to default mask");
$builder->ok($im->setpixel(x=>0, 'y'=>2, color=>$whitef), "set to white all channels");
test_colorf_gpix($im->{IMG}, 0, 2, $whitef, $epsilon, "ppixf");
$builder->ok($im->setmask(mask=>0xF-0x2), "set channel to exclude channel1");
$builder->ok($im->setpixel(x=>0, 'y'=>2, color=>$greyf), "set to grey, no channel 2");
test_colorf_gpix($im->{IMG}, 0, 2, $white_greyf, $epsilon, "ppixf masked");
print "# with plinf\n";
$builder->ok($im->setmask(mask=>~0), "set to default mask");
$builder->ok($im->setscanline(x=>0, 'y'=>3, pixels => [$whitef]),
"set to white all channels");
test_colorf_gpix($im->{IMG}, 0, 3, $whitef, $epsilon, "plinf");
$builder->ok($im->setmask(mask=>0xF-0x2), "set channel to exclude channel1");
$builder->ok($im->setscanline(x=>0, 'y'=>3, pixels=>[$greyf]),
"set to grey, no channel 2");
test_colorf_gpix($im->{IMG}, 0, 3, $white_greyf, $epsilon, "plinf masked");
}
1;
__END__
=head1 NAME
Imager::Test - common functions used in testing Imager
=head1 SYNOPSIS
use Imager::Test 'diff_text_with_nul';
diff_text_with_nul($test_name, $text1, $text2, @string_options);
=head1 DESCRIPTION
This is a repository of functions used in testing Imager.
Some functions will only be useful in testing Imager itself, while
others should be useful in testing modules that use Imager.
No functions are exported by default.
=head1 FUNCTIONS
=over
=item is_color3($color, $red, $blue, $green, $comment)
Tests is $color matches the given ($red, $blue, $green)
=item is_image($im1, $im2, $comment)
Tests if the 2 images have the same content. Both images must be
defined, have the same width, height, channels and the same color in
each pixel. The color comparison is done at 8-bits per pixel. The
color representation such as direct vs paletted, bits per sample are
not checked. Equivalent to is_image_similar($im1, $im2, 0, $comment).
=item is_imaged($im, $im2, $comment)
Tests if the two images have the same content at the double/sample
level.
=item is_image_similar($im1, $im2, $maxdiff, $comment)
Tests if the 2 images have similar content. Both images must be
defined, have the same width, height and channels. The cum of the
squares of the differences of each sample are calculated and must be
less than or equal to I<$maxdiff> for the test to pass. The color
comparison is done at 8-bits per pixel. The color representation such
as direct vs paletted, bits per sample are not checked.
=item test_image_raw()
Returns a 150x150x3 Imager::ImgRaw test image.
=item test_image()
Returns a 150x150x3 8-bit/sample OO test image.
=item test_image_16()
Returns a 150x150x3 16-bit/sample OO test image.
=item test_image_double()
Returns a 150x150x3 double/sample OO test image.
=item diff_text_with_nul($test_name, $text1, $text2, @options)
Creates 2 test images and writes $text1 to the first image and $text2
to the second image with the string() method. Each call adds 3 ok/not
ok to the output of the test script.
Extra options that should be supplied include the font and either a
color or channel parameter.
This was explicitly created for regression tests on #21770.
=item image_bounds_checks($im)
Attempts to write to various pixel positions outside the edge of the
image to ensure that it fails in those locations.
Any new image type should pass these tests. Does 16 separate tests.
=item test_colorf_gpix($im, $x, $y, $expected, $epsilon, $comment)
Retrieves the pixel ($x,$y) from the low-level image $im and compares
it to the floating point color $expected, with a tolerance of epsilon.
=item test_color_gpix($im, $x, $y, $expected, $comment)
Retrieves the pixel ($x,$y) from the low-level image $im and compares
it to the floating point color $expected.
=item test_colorf_glin($im, $x, $y, $pels, $comment)
Retrieves the floating point pixels ($x, $y)-[$x+@$pels, $y] from the
low level image $im and compares them against @$pels.
=item mask_tests($im, $epsilon)
Perform a standard set of mask tests on the OO image $im.
=back
=head1 AUTHOR
Tony Cook <tony@develop-help.com>
=cut
|