Home | History | Annotate | Download | only in fpx
      1 #!/usr/bin/perl
      2 #
      3 # Test reading FPX images
      4 #
      5 # Contributed by Bob Friesenhahn <bfriesen (at] simple.dallas.tx.us>
      6 #
      7 
      8 BEGIN { $| = 1; $test=1; print "1..5\n"; }
      9 END {print "not ok $test\n" unless $loaded;}
     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 testRead( 'input_bw.fpx',
     22   '164b30b0e46fab4b60ea891a0f13c1ec2e3c9558e647c75021f7bd2935fe1e46' );
     23 
     24 #
     25 # 2) Test grayscale FPX
     26 # 
     27 ++$test;
     28 print( "8-bit grayscale FPX ...\n" );
     29 testRead( 'input_grayscale.fpx',
     30   '74416d622acf60c213b8dd0a4ba9ab4a46581daa8b7b4a084658fb5ae2ad1e4b' );
     31 
     32 #
     33 # 3) Test 256 color pseudocolor FPX
     34 # 
     35 ++$test;
     36 print( "8-bit indexed-color FPX ...\n" );
     37 testRead( 'input_256.fpx',
     38   '772ef079906aa47951a09cd4ce6d62b740a391935710e7076a6716423a92db4f' );
     39 
     40 #
     41 # 4) Test TrueColor FPX
     42 # 
     43 ++$test;
     44 print( "24-bit Truecolor FPX ...\n" );
     45 testRead( 'input_truecolor.fpx',
     46   'a698f2fe0c6c31f83d19554a6ec02bac79c961dd9a87e7ed217752e75eb615d7' );
     47 
     48 #
     49 # 5) Test JPEG FPX
     50 # 
     51 ++$test;
     52 print( "24-bit JPEG FPX ...\n" );
     53 testRead( 'input_jpeg.fpx',
     54   '8c02bf8e953893cbd65b8a0a1fb574de50ac4cdeb2a88dbf702c8b65d82aa41b' );
     55 
     56