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.
35 lines
871 B
35 lines
871 B
#!/usr/bin/perl
|
|
#
|
|
# Test reading JPEG images
|
|
#
|
|
# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
|
|
#
|
|
BEGIN { $| = 1; $test=1; print "1..2\n"; }
|
|
END {print "not ok $test\n" unless $loaded;}
|
|
|
|
use Image::Magick;
|
|
use lib '/home/cristy/ImageMagick-7.0.8-27/PerlMagick';
|
|
$loaded=1;
|
|
|
|
require 't/subroutines.pl';
|
|
|
|
chdir 't/jpeg' || die 'Cd failed';
|
|
|
|
#
|
|
# 1) Test with non-interlaced image
|
|
#
|
|
print( "Non-interlaced JPEG ...\n" );
|
|
testReadWriteCompare( 'input.jpg', 'output_tmp.jpg',
|
|
'../reference/jpeg/write_non_interlaced.miff',
|
|
q//, q//, 0.0001, 0.05);
|
|
|
|
#
|
|
# 2) Test with plane-interlaced image
|
|
#
|
|
++$test;
|
|
print( "Plane-interlaced JPEG ...\n" );
|
|
testReadWriteCompare( 'input.jpg', 'output_plane_tmp.jpg',
|
|
'../reference/jpeg/write_plane_interlaced.miff',
|
|
q//, q//, 0.0001, 0.05);
|
|
|