1#!/usr/bin/perl
2#
3# Test reading PNG images when 16bit support is enabled
4#
5# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
6#
7
8BEGIN { $| = 1; $test=1; print "1..5\n"; }
9END {print "not ok $test\n" unless $loaded;}
10use Image::Magick;
11$loaded=1;
12
13require 't/subroutines.pl';
14
15chdir 't/png' || die 'Cd failed';
16
17#
18# 1) Test Monochrome PNG
19#
20testRead( 'input_mono.png',
21  'fa43f8c3d45c3efadab6791a6de83b5a303f65e2c1d58e0814803a4846e68593' );
22
23#
24# 2) Test 256 color pseudocolor PNG
25#
26++$test;
27testRead( 'input_256.png',
28  '5798b9623e5922d3f6c0e87ae76ccc5a69568258e557613f20934f2de6ee2d35' );
29
30#
31# 3) Test TrueColor PNG
32#
33++$test;
34testRead( 'input_truecolor.png',
35  'eb9adaa26f3cda80273f436ddb92805da2cb88dd032d24380cd48cf05432a326' );
36
37#
38# 4) Test Multiple-image Network Graphics
39#
40++$test;
41testRead( 'input.mng',
42  '65c0eacf6e060b9fb8467eaa0f74e2dcc3ef72d06577f06a506bd0546b01fb61' );
43
44#
45# 5) Test 16-bit Portable Network Graphics
46#
47++$test;
48testRead( 'input_16.png',
49  '6418d8dd1206c3566bac92a883196d448b4d3cc7c19581d95d43bda4f0b7e495',
50  '2d30a8bed1ae8bd19c8320e861f3140dfc7497ca8a05d249734ab41c71272f08');
51
52