64 lines
1.5 KiB
Raku
64 lines
1.5 KiB
Raku
#!/usr/bin/perl
|
|
#
|
|
# Test reading PNG images
|
|
#
|
|
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
|
#
|
|
|
|
BEGIN { $| = 1; $test=1; print "1..6\n"; }
|
|
END {print "not ok $test\n" unless $loaded;}
|
|
use Image::Magick;
|
|
$loaded=1;
|
|
|
|
require 't/subroutines.pl';
|
|
|
|
chdir 't/png' || die 'Cd failed';
|
|
|
|
#
|
|
# 1) Test Black-and-white, bit_depth=1 PNG
|
|
#
|
|
print( "1-bit grayscale PNG ...\n" );
|
|
testRead( 'input_bw.png',
|
|
'7d12eaac6f41d3c2947022f382e158ea715e918ce0cd73649ec04db01239c88f' );
|
|
|
|
#
|
|
# 2) Test Monochrome PNG
|
|
#
|
|
++$test;
|
|
print( "8-bit grayscale PNG ...\n" );
|
|
testRead( 'input_mono.png',
|
|
'fa43f8c3d45c3efadab6791a6de83b5a303f65e2c1d58e0814803a4846e68593' );
|
|
|
|
#
|
|
# 3) Test 16-bit Portable Network Graphics
|
|
#
|
|
++$test;
|
|
print( "16-bit grayscale PNG ...\n" );
|
|
testRead( 'input_16.png',
|
|
'6418d8dd1206c3566bac92a883196d448b4d3cc7c19581d95d43bda4f0b7e495',
|
|
'2d30a8bed1ae8bd19c8320e861f3140dfc7497ca8a05d249734ab41c71272f08' );
|
|
#
|
|
# 4) Test 256 color pseudocolor PNG
|
|
#
|
|
++$test;
|
|
print( "8-bit indexed-color PNG ...\n" );
|
|
testRead( 'input_256.png',
|
|
'5798b9623e5922d3f6c0e87ae76ccc5a69568258e557613f20934f2de6ee2d35' );
|
|
|
|
#
|
|
# 5) Test TrueColor PNG
|
|
#
|
|
++$test;
|
|
print( "24-bit Truecolor PNG ...\n" );
|
|
testRead( 'input_truecolor.png',
|
|
'eb9adaa26f3cda80273f436ddb92805da2cb88dd032d24380cd48cf05432a326' );
|
|
|
|
#
|
|
# 6) Test Multiple-image Network Graphics
|
|
#
|
|
++$test;
|
|
print( "MNG with 24-bit Truecolor PNGs...\n" );
|
|
testRead( 'input.mng',
|
|
'65c0eacf6e060b9fb8467eaa0f74e2dcc3ef72d06577f06a506bd0546b01fb61' );
|
|
|