blob: 0208985d4a564849bb21945560cfb97297afc16b [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001#!/usr/bin/perl
2#
3# Test writing TIFF images
4#
5# Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
6#
7BEGIN { $| = 1; $test=1; print "1..10\n"; }
8END {print "not ok $test\n" unless $loaded;}
9
10use Image::Magick;
11$loaded=1;
12
13require 't/subroutines.pl';
14
15chdir 't/tiff' || die 'Cd failed';
16
17#
18# 1) Test 4-bit pseudocolor image
19#
20print("PseudoColor image (4 bits/sample) ...\n");
21testReadWrite( 'input_16.tiff',
22 'output_16.tiff',
23 q//,
cristyd2cb5a92011-12-31 20:10:15 +000024 '7e704fc1a99118630a92374ba27adf5baf69f30019016be2ed70eac79629e8b4');
cristy3ed852e2009-09-05 21:47:34 +000025
26#
27# 2) Test 8-bit pseudocolor image
28#
29++$test;
30print("PseudoColor image (8 bits/sample) ...\n");
31testReadWrite( 'input_256.tiff',
32 'output_256.tiff',
33 q//,
cristyd2cb5a92011-12-31 20:10:15 +000034 '1280e7ed7094aaae47c0be1cb0b6d33660e59483a5500f5f40e34940346f7847');
cristy3ed852e2009-09-05 21:47:34 +000035
36#
37# 3) Test 4-bit pseudocolor + matte channel image
38#
39++$test;
40print("PseudoColor image (4 bits/sample + matte channel) ...\n");
41testReadWrite( 'input_16_matte.tiff',
42 'output_16_matte.tiff',
43 q//,
cristyd2cb5a92011-12-31 20:10:15 +000044 '7e704fc1a99118630a92374ba27adf5baf69f30019016be2ed70eac79629e8b4' );
cristy3ed852e2009-09-05 21:47:34 +000045
46#
47# 4) Test 8-bit pseudocolor + matte channel image
48#
49++$test;
50print("PseudoColor image (8 bits/sample + matte channel) ...\n");
51testReadWrite( 'input_256_matte.tiff',
52 'output_256_matte.tiff',
53 q//,
cristyd2cb5a92011-12-31 20:10:15 +000054 'f3dc959e76f722bbc0a4338e2ed6650d73be3a81774c55210118531333fe6daa' );
cristy3ed852e2009-09-05 21:47:34 +000055
56#
57# 5) Test truecolor image
58#
59++$test;
60print("TrueColor image (8 bits/sample) ...\n");
61testReadWrite( 'input_truecolor.tiff',
62 'output_truecolor.tiff',
63 q/quality=>55/,
cristy11165b72011-09-28 17:26:49 +000064 '359291f6da6c9118bef6d75604be979b3267e4df0716e1bfc357f13cafd0acb8' );
cristy3ed852e2009-09-05 21:47:34 +000065
66#
67# 6) Test monochrome image
68#
69++$test;
70print("Gray image (1 bit per sample) ...\n");
71testReadWrite( 'input_mono.tiff',
72 'output_mono.tiff',
73 q//,
cristyb241f382012-01-01 01:45:57 +000074 'c8c4f812d902693d1de6c74a6cffaaef7506bd868df65cae63b06707f2c9f3ac' );
cristy3ed852e2009-09-05 21:47:34 +000075
76#
77# 7) Test gray 4 bit image
78#
79++$test;
80print("Gray image (4 bits per sample) ...\n");
81testReadWrite( 'input_gray_4bit.tiff',
82 'output_gray_4bit.tiff',
83 q//,
cristyb241f382012-01-01 01:45:57 +000084 'be370e06f1aad47490e88b5212002c89520b07af6764690b3cee4cb9f1343df9' );
cristy3ed852e2009-09-05 21:47:34 +000085
86#
87# 8) Test gray 8 bit image
88#
89++$test;
90print("Gray image (8 bits per sample) ...\n");
91testReadWrite( 'input_gray_8bit.tiff',
92 'output_gray_8bit.tiff',
93 q//,
cristyb241f382012-01-01 01:45:57 +000094 '9bd950a80339e260c491025f5c58a21ca70c38e2c498914feda6558bfa1ffe35' );
cristy3ed852e2009-09-05 21:47:34 +000095
96#
97# 9) Test gray 4 bit image (with matte channel)
98#
99++$test;
100print("Gray image (4 bits per sample + matte channel) ...\n");
101testReadWrite( 'input_gray_4bit_matte.tiff',
102 'output_gray_4bit_matte.tiff',
103 q//,
cristyb241f382012-01-01 01:45:57 +0000104 'b3bb4c5f125ef81e68c038fe6ff3b1cd932e759bf2555a4d4746074859d90ee3' );
cristy3ed852e2009-09-05 21:47:34 +0000105
106#
107# 10) Test gray 8 bit image (with matte channel)
108#
109++$test;
110print("Gray image (8 bits per sample + matte channel) ...\n");
111testReadWrite( 'input_gray_8bit_matte.tiff',
112 'output_gray_8bit_matte.tiff',
113 q//,
cristyb241f382012-01-01 01:45:57 +0000114 'c34ac18bc2c04aa5d2577c579a620a1223e2249018ed6303cf08282f578d59c9' );