Home | History | Annotate | Download | only in jbig
      1 #!/usr/bin/perl
      2 #
      3 # Test read image method on JBIG image
      4 #
      5 # Contributed by Bob Friesenhahn <bfriesen (at] simple.dallas.tx.us>
      6 #
      7 BEGIN { $| = 1; $test=1; print "1..1\n"; }
      8 END {print "not ok $test\n" unless $loaded;}
      9 use Image::Magick;
     10 $loaded=1;
     11 
     12 require 't/subroutines.pl';
     13 
     14 chdir 't/jbig' || die 'Cd failed';
     15 
     16 testRead( 'input.jbig',
     17   'f7047e83432fbef872f3034a19efb95aa3b241d0be228ae0ccdc7814a9e27811');
     18