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