1 #!/usr/bin/perl 2 # 3 # Test writing FPX images 4 # 5 # Contributed by Bob Friesenhahn <bfriesen (at] simple.dallas.tx.us> 6 # 7 BEGIN { $| = 1; $test=1; print "1..4\n"; } 8 END {print "not ok $test\n" unless $loaded;} 9 10 use Image::Magick; 11 $loaded=1; 12 13 require 't/subroutines.pl'; 14 15 chdir 't/fpx' || die 'Cd failed'; 16 17 # 18 # 1) Test Black-and-white, bit_depth=1 FPX 19 # 20 print( "1-bit grayscale FPX ...\n" ); 21 testReadWrite( 'input_bw.fpx', 'output_bw.fpx', q/quality=>95/, 22 '164b30b0e46fab4b60ea891a0f13c1ec2e3c9558e647c75021f7bd2935fe1e46'); 23 24 # 25 # 2) Test grayscale image 26 # 27 ++$test; 28 print( "8-bit grayscale FPX ...\n" ); 29 testReadWrite( 'input_grayscale.fpx', 30 'output_grayscale.fpx', '', 31 '74416d622acf60c213b8dd0a4ba9ab4a46581daa8b7b4a084658fb5ae2ad1e4b'); 32 # 33 # 3) Test pseudocolor image 34 # 35 ++$test; 36 print( "8-bit indexed-color FPX ...\n" ); 37 testReadWrite( 'input_256.fpx', 38 'output_256.fpx', 39 q/quality=>54/, 40 '772ef079906aa47951a09cd4ce6d62b740a391935710e7076a6716423a92db4f' ); 41 # 42 # 4) Test truecolor image 43 # 44 ++$test; 45 print( "24-bit Truecolor FPX ...\n" ); 46 testReadWrite( 'input_truecolor.fpx', 47 'output_truecolor.fpx', 48 q/quality=>55/, 49 'a698f2fe0c6c31f83d19554a6ec02bac79c961dd9a87e7ed217752e75eb615d7' ); 50