]> git.imager.perl.org - imager.git/blame_incremental - t/t07iolayer.t
Added rgb.c to MANIFEST
[imager.git] / t / t07iolayer.t
... / ...
CommitLineData
1BEGIN { $|=1; print "1..7\n"; }
2END { print "not ok 1\n" unless $loaded; };
3use Imager qw(:all);
4++$loaded;
5print "ok 1\n";
6init_log("testout/t07iolayer.log", 1);
7
8
9undef($/);
10# start by testing io buffer
11
12$data="P2\n2 2\n255\n 255 0\n0 255\n";
13$IO = Imager::io_new_buffer($data);
14$im = Imager::i_readpnm_wiol($IO, -1);
15
16print "ok 2\n";
17
18
19open(FH, ">testout/t07.ppm") or die $!;
20binmode(FH);
21$fd = fileno(FH);
22$IO2 = Imager::io_new_fd( $fd );
23Imager::i_writeppm_wiol($im, $IO2);
24close(FH);
25undef($im);
26
27
28
29open(FH, "<testimg/penguin-base.ppm");
30binmode(FH);
31$data = <FH>;
32close(FH);
33$IO3 = Imager::io_new_buffer($data);
34#undef($data);
35$im = Imager::i_readpnm_wiol($IO3, -1);
36
37print "ok 3\n";
38
39
40open(FH, "<testimg/penguin-base.ppm") or die $!;
41binmode(FH);
42$fd = fileno(FH);
43$IO4 = Imager::io_new_fd( $fd );
44$im2 = Imager::i_readpnm_wiol($IO4, -1);
45close(FH);
46undef($IO4);
47
48print "ok 4\n";
49
50Imager::i_img_diff($im, $im2) ? print "not ok 5\n" : print "ok 5\n";
51undef($im2);
52
53
54$IO5 = Imager::io_new_bufchain();
55Imager::i_writeppm_wiol($im, $IO5);
56$data2 = Imager::io_slurp($IO5);
57undef($IO5);
58
59print "ok 6\n";
60
61$IO6 = Imager::io_new_buffer($data2);
62$im3 = Imager::i_readpnm_wiol($IO6, -1);
63
64Imager::i_img_diff($im, $im3) ? print "not ok 7\n" : print "ok 7\n";
65
66
67
68