1#!/usr/bin/perl 2# 3# Test reading FPX images 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/fpx' || die 'Cd failed'; 16 17# 18# 1) Test Black-and-white, bit_depth=1 FPX 19# 20print( "1-bit grayscale FPX ...\n" ); 21testRead( 'input_bw.fpx', 22 '164b30b0e46fab4b60ea891a0f13c1ec2e3c9558e647c75021f7bd2935fe1e46' ); 23 24# 25# 2) Test grayscale FPX 26# 27++$test; 28print( "8-bit grayscale FPX ...\n" ); 29testRead( 'input_grayscale.fpx', 30 '74416d622acf60c213b8dd0a4ba9ab4a46581daa8b7b4a084658fb5ae2ad1e4b' ); 31 32# 33# 3) Test 256 color pseudocolor FPX 34# 35++$test; 36print( "8-bit indexed-color FPX ...\n" ); 37testRead( 'input_256.fpx', 38 '772ef079906aa47951a09cd4ce6d62b740a391935710e7076a6716423a92db4f' ); 39 40# 41# 4) Test TrueColor FPX 42# 43++$test; 44print( "24-bit Truecolor FPX ...\n" ); 45testRead( 'input_truecolor.fpx', 46 'a698f2fe0c6c31f83d19554a6ec02bac79c961dd9a87e7ed217752e75eb615d7' ); 47 48# 49# 5) Test JPEG FPX 50# 51++$test; 52print( "24-bit JPEG FPX ...\n" ); 53testRead( 'input_jpeg.fpx', 54 '8c02bf8e953893cbd65b8a0a1fb574de50ac4cdeb2a88dbf702c8b65d82aa41b' ); 55 56