You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
466 B
23 lines
466 B
#!/usr/bin/perl
|
|
#
|
|
# Test write image method on JBIG image
|
|
#
|
|
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
|
#
|
|
BEGIN { $| = 1; $test=1; print "1..1\n"; }
|
|
END {print "not \n" unless $loaded;}
|
|
|
|
use Image::Magick;
|
|
$loaded=1;
|
|
|
|
require 't/subroutines.pl';
|
|
|
|
chdir 't/jbig' || die 'Cd failed';
|
|
|
|
testReadWrite( 'input.jbig',
|
|
'output.jbig',
|
|
'',
|
|
'214ce53ffd74a5c46a354e53d4512294f6b68c8dc843db61d5de71f53c7ace0c' );
|
|
|
|
$test=0; # Keep perl from complaining
|