cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | #!/usr/bin/perl |
| 2 | # |
| 3 | # Test writing TIFF images |
| 4 | # |
| 5 | # Contributed by Bob Friesenhahn <bfriesen@simple.dallas.tx.us> |
| 6 | # |
| 7 | BEGIN { $| = 1; $test=1; print "1..10\n"; } |
| 8 | END {print "not ok $test\n" unless $loaded;} |
| 9 | |
| 10 | use Image::Magick; |
| 11 | $loaded=1; |
| 12 | |
| 13 | require 't/subroutines.pl'; |
| 14 | |
| 15 | chdir 't/tiff' || die 'Cd failed'; |
| 16 | |
| 17 | # |
| 18 | # 1) Test 4-bit pseudocolor image |
| 19 | # |
| 20 | print("PseudoColor image (4 bits/sample) ...\n"); |
| 21 | testReadWrite( 'input_16.tiff', |
| 22 | 'output_16.tiff', |
| 23 | q//, |
cristy | 11165b7 | 2011-09-28 17:26:49 +0000 | [diff] [blame] | 24 | '4c8ba149f3b22a9d846e72e8317834871f5fb173799620d4d059e62f69576846'); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 25 | |
| 26 | # |
| 27 | # 2) Test 8-bit pseudocolor image |
| 28 | # |
| 29 | ++$test; |
| 30 | print("PseudoColor image (8 bits/sample) ...\n"); |
| 31 | testReadWrite( 'input_256.tiff', |
| 32 | 'output_256.tiff', |
| 33 | q//, |
cristy | 11165b7 | 2011-09-28 17:26:49 +0000 | [diff] [blame] | 34 | '48113b47a70a1d8dc046327cb9c799ed265e5d76a5eb0495d142015c4bd44b23'); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 35 | |
| 36 | # |
| 37 | # 3) Test 4-bit pseudocolor + matte channel image |
| 38 | # |
| 39 | ++$test; |
| 40 | print("PseudoColor image (4 bits/sample + matte channel) ...\n"); |
| 41 | testReadWrite( 'input_16_matte.tiff', |
| 42 | 'output_16_matte.tiff', |
| 43 | q//, |
cristy | 11165b7 | 2011-09-28 17:26:49 +0000 | [diff] [blame] | 44 | '4c8ba149f3b22a9d846e72e8317834871f5fb173799620d4d059e62f69576846' ); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 45 | |
| 46 | # |
| 47 | # 4) Test 8-bit pseudocolor + matte channel image |
| 48 | # |
| 49 | ++$test; |
| 50 | print("PseudoColor image (8 bits/sample + matte channel) ...\n"); |
| 51 | testReadWrite( 'input_256_matte.tiff', |
| 52 | 'output_256_matte.tiff', |
| 53 | q//, |
cristy | 11165b7 | 2011-09-28 17:26:49 +0000 | [diff] [blame] | 54 | 'f50dea7da00ff27cc5fd5bc66bf0146b68b207ea7df919f72c4ccb02cb40f759' ); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 55 | |
| 56 | # |
| 57 | # 5) Test truecolor image |
| 58 | # |
| 59 | ++$test; |
| 60 | print("TrueColor image (8 bits/sample) ...\n"); |
| 61 | testReadWrite( 'input_truecolor.tiff', |
| 62 | 'output_truecolor.tiff', |
| 63 | q/quality=>55/, |
cristy | 11165b7 | 2011-09-28 17:26:49 +0000 | [diff] [blame] | 64 | '359291f6da6c9118bef6d75604be979b3267e4df0716e1bfc357f13cafd0acb8' ); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 65 | |
| 66 | # |
| 67 | # 6) Test monochrome image |
| 68 | # |
| 69 | ++$test; |
| 70 | print("Gray image (1 bit per sample) ...\n"); |
| 71 | testReadWrite( 'input_mono.tiff', |
| 72 | 'output_mono.tiff', |
| 73 | q//, |
cristy | 11165b7 | 2011-09-28 17:26:49 +0000 | [diff] [blame] | 74 | '57fc672e7e231d3f92793d9b2073132def273f4be3115bcbed1c49a1c3131222' ); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 75 | |
| 76 | # |
| 77 | # 7) Test gray 4 bit image |
| 78 | # |
| 79 | ++$test; |
| 80 | print("Gray image (4 bits per sample) ...\n"); |
| 81 | testReadWrite( 'input_gray_4bit.tiff', |
| 82 | 'output_gray_4bit.tiff', |
| 83 | q//, |
cristy | 11165b7 | 2011-09-28 17:26:49 +0000 | [diff] [blame] | 84 | 'a3ae7f6908bb538751f59565dd17f28f83201620ca3ccc8a87a388b3d4c50232' ); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 85 | |
| 86 | # |
| 87 | # 8) Test gray 8 bit image |
| 88 | # |
| 89 | ++$test; |
| 90 | print("Gray image (8 bits per sample) ...\n"); |
| 91 | testReadWrite( 'input_gray_8bit.tiff', |
| 92 | 'output_gray_8bit.tiff', |
| 93 | q//, |
cristy | 11165b7 | 2011-09-28 17:26:49 +0000 | [diff] [blame] | 94 | '63783c30b21fca4cc94bb6c02ae37df722224a466d997db39bb7ddece5e236a8' ); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 95 | |
| 96 | # |
| 97 | # 9) Test gray 4 bit image (with matte channel) |
| 98 | # |
| 99 | ++$test; |
| 100 | print("Gray image (4 bits per sample + matte channel) ...\n"); |
| 101 | testReadWrite( 'input_gray_4bit_matte.tiff', |
| 102 | 'output_gray_4bit_matte.tiff', |
| 103 | q//, |
cristy | 11165b7 | 2011-09-28 17:26:49 +0000 | [diff] [blame] | 104 | '44cb1a46bd5a147f446b18cea8b07cfdf31acdc856029f95d91193add5c11b85' ); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 105 | |
| 106 | # |
| 107 | # 10) Test gray 8 bit image (with matte channel) |
| 108 | # |
| 109 | ++$test; |
| 110 | print("Gray image (8 bits per sample + matte channel) ...\n"); |
| 111 | testReadWrite( 'input_gray_8bit_matte.tiff', |
| 112 | 'output_gray_8bit_matte.tiff', |
| 113 | q//, |
cristy | 11165b7 | 2011-09-28 17:26:49 +0000 | [diff] [blame] | 114 | '44cb1a46bd5a147f446b18cea8b07cfdf31acdc856029f95d91193add5c11b85' ); |