forked from JoshDullen/libtiffN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
t4.cs
executable file
·277 lines (271 loc) · 15.1 KB
/
t4.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#if CCITT_SUPPORT
// t4.cs
//
// Based on LIBTIFF, Version 3.9.4 - 15-Jun-2010
// Copyright (c) 2006-2010 by the Authors
// Copyright (c) 1988-1997 Sam Leffler
// Copyright (c) 1991-1997 Silicon Graphics, Inc.
//
// Permission to use, copy, modify, distribute, and sell this software and
// its documentation for any purpose is hereby granted without fee, provided
// that (i) the above copyright notices and this permission notice appear in
// all copies of the software and related documentation, and (ii) the names of
// Sam Leffler and Silicon Graphics may not be used in any advertising or
// publicity relating to the software without the specific, prior written
// permission of Sam Leffler and Silicon Graphics.
//
// THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
// EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
// WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
//
// IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
// ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
// OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
// WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
// LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
// OF THIS SOFTWARE.
namespace Free.Ports.LibTiff
{
public static partial class libtiff
{
// CCITT T.4 1D Huffman runlength codes and
// related definitions. Given the small sizes
// of these tables it does not seem
// worthwhile to make code & length 8 bits.
struct TIFFFaxCodesTableEntry
{
internal byte length; // bit length of g3 code
internal ushort code; // g3 code
internal short runlen; // run length in bits
internal TIFFFaxCodesTableEntry(byte length, ushort code, short runlen)
{
this.length=length;
this.code=code;
this.runlen=runlen;
}
}
const uint EOL=0x001; // EOL code value - 0000 0000 0000 1
// status values returned instead of a run length
const short G3CODE_EOL=-1; // NB: ACT_EOL - ACT_WRUNT
// Note that these tables are ordered such that the
// index into the table is known to be either the
// run length, or (run length / 64) + a fixed offset.
static readonly TIFFFaxCodesTableEntry[] TIFFFaxWhiteCodes=new TIFFFaxCodesTableEntry[]
{
new TIFFFaxCodesTableEntry( 8, 0x35, 0), // 0011 0101
new TIFFFaxCodesTableEntry( 6, 0x07, 1), // 0001 11
new TIFFFaxCodesTableEntry( 4, 0x07, 2), // 0111
new TIFFFaxCodesTableEntry( 4, 0x08, 3), // 1000
new TIFFFaxCodesTableEntry( 4, 0x0B, 4), // 1011
new TIFFFaxCodesTableEntry( 4, 0x0C, 5), // 1100
new TIFFFaxCodesTableEntry( 4, 0x0E, 6), // 1110
new TIFFFaxCodesTableEntry( 4, 0x0F, 7), // 1111
new TIFFFaxCodesTableEntry( 5, 0x13, 8), // 1001 1
new TIFFFaxCodesTableEntry( 5, 0x14, 9), // 1010 0
new TIFFFaxCodesTableEntry( 5, 0x07, 10), // 0011 1
new TIFFFaxCodesTableEntry( 5, 0x08, 11), // 0100 0
new TIFFFaxCodesTableEntry( 6, 0x08, 12), // 0010 00
new TIFFFaxCodesTableEntry( 6, 0x03, 13), // 0000 11
new TIFFFaxCodesTableEntry( 6, 0x34, 14), // 1101 00
new TIFFFaxCodesTableEntry( 6, 0x35, 15), // 1101 01
new TIFFFaxCodesTableEntry( 6, 0x2A, 16), // 1010 10
new TIFFFaxCodesTableEntry( 6, 0x2B, 17), // 1010 11
new TIFFFaxCodesTableEntry( 7, 0x27, 18), // 0100 111
new TIFFFaxCodesTableEntry( 7, 0x0C, 19), // 0001 100
new TIFFFaxCodesTableEntry( 7, 0x08, 20), // 0001 000
new TIFFFaxCodesTableEntry( 7, 0x17, 21), // 0010 111
new TIFFFaxCodesTableEntry( 7, 0x03, 22), // 0000 011
new TIFFFaxCodesTableEntry( 7, 0x04, 23), // 0000 100
new TIFFFaxCodesTableEntry( 7, 0x28, 24), // 0101 000
new TIFFFaxCodesTableEntry( 7, 0x2B, 25), // 0101 011
new TIFFFaxCodesTableEntry( 7, 0x13, 26), // 0010 011
new TIFFFaxCodesTableEntry( 7, 0x24, 27), // 0100 100
new TIFFFaxCodesTableEntry( 7, 0x18, 28), // 0011 000
new TIFFFaxCodesTableEntry( 8, 0x02, 29), // 0000 0010
new TIFFFaxCodesTableEntry( 8, 0x03, 30), // 0000 0011
new TIFFFaxCodesTableEntry( 8, 0x1A, 31), // 0001 1010
new TIFFFaxCodesTableEntry( 8, 0x1B, 32), // 0001 1011
new TIFFFaxCodesTableEntry( 8, 0x12, 33), // 0001 0010
new TIFFFaxCodesTableEntry( 8, 0x13, 34), // 0001 0011
new TIFFFaxCodesTableEntry( 8, 0x14, 35), // 0001 0100
new TIFFFaxCodesTableEntry( 8, 0x15, 36), // 0001 0101
new TIFFFaxCodesTableEntry( 8, 0x16, 37), // 0001 0110
new TIFFFaxCodesTableEntry( 8, 0x17, 38), // 0001 0111
new TIFFFaxCodesTableEntry( 8, 0x28, 39), // 0010 1000
new TIFFFaxCodesTableEntry( 8, 0x29, 40), // 0010 1001
new TIFFFaxCodesTableEntry( 8, 0x2A, 41), // 0010 1010
new TIFFFaxCodesTableEntry( 8, 0x2B, 42), // 0010 1011
new TIFFFaxCodesTableEntry( 8, 0x2C, 43), // 0010 1100
new TIFFFaxCodesTableEntry( 8, 0x2D, 44), // 0010 1101
new TIFFFaxCodesTableEntry( 8, 0x04, 45), // 0000 0100
new TIFFFaxCodesTableEntry( 8, 0x05, 46), // 0000 0101
new TIFFFaxCodesTableEntry( 8, 0x0A, 47), // 0000 1010
new TIFFFaxCodesTableEntry( 8, 0x0B, 48), // 0000 1011
new TIFFFaxCodesTableEntry( 8, 0x52, 49), // 0101 0010
new TIFFFaxCodesTableEntry( 8, 0x53, 50), // 0101 0011
new TIFFFaxCodesTableEntry( 8, 0x54, 51), // 0101 0100
new TIFFFaxCodesTableEntry( 8, 0x55, 52), // 0101 0101
new TIFFFaxCodesTableEntry( 8, 0x24, 53), // 0010 0100
new TIFFFaxCodesTableEntry( 8, 0x25, 54), // 0010 0101
new TIFFFaxCodesTableEntry( 8, 0x58, 55), // 0101 1000
new TIFFFaxCodesTableEntry( 8, 0x59, 56), // 0101 1001
new TIFFFaxCodesTableEntry( 8, 0x5A, 57), // 0101 1010
new TIFFFaxCodesTableEntry( 8, 0x5B, 58), // 0101 1011
new TIFFFaxCodesTableEntry( 8, 0x4A, 59), // 0100 1010
new TIFFFaxCodesTableEntry( 8, 0x4B, 60), // 0100 1011
new TIFFFaxCodesTableEntry( 8, 0x32, 61), // 0011 0010
new TIFFFaxCodesTableEntry( 8, 0x33, 62), // 0011 0011
new TIFFFaxCodesTableEntry( 8, 0x34, 63), // 0011 0100
new TIFFFaxCodesTableEntry( 5, 0x1B, 64), // 1101 1
new TIFFFaxCodesTableEntry( 5, 0x12, 128), // 1001 0
new TIFFFaxCodesTableEntry( 6, 0x17, 192), // 0101 11
new TIFFFaxCodesTableEntry( 7, 0x37, 256), // 0110 111
new TIFFFaxCodesTableEntry( 8, 0x36, 320), // 0011 0110
new TIFFFaxCodesTableEntry( 8, 0x37, 384), // 0011 0111
new TIFFFaxCodesTableEntry( 8, 0x64, 448), // 0110 0100
new TIFFFaxCodesTableEntry( 8, 0x65, 512), // 0110 0101
new TIFFFaxCodesTableEntry( 8, 0x68, 576), // 0110 1000
new TIFFFaxCodesTableEntry( 8, 0x67, 640), // 0110 0111
new TIFFFaxCodesTableEntry( 9, 0xCC, 704), // 0110 0110 0
new TIFFFaxCodesTableEntry( 9, 0xCD, 768), // 0110 0110 1
new TIFFFaxCodesTableEntry( 9, 0xD2, 832), // 0110 1001 0
new TIFFFaxCodesTableEntry( 9, 0xD3, 896), // 0110 1001 1
new TIFFFaxCodesTableEntry( 9, 0xD4, 960), // 0110 1010 0
new TIFFFaxCodesTableEntry( 9, 0xD5, 1024), // 0110 1010 1
new TIFFFaxCodesTableEntry( 9, 0xD6, 1088), // 0110 1011 0
new TIFFFaxCodesTableEntry( 9, 0xD7, 1152), // 0110 1011 1
new TIFFFaxCodesTableEntry( 9, 0xD8, 1216), // 0110 1100 0
new TIFFFaxCodesTableEntry( 9, 0xD9, 1280), // 0110 1100 1
new TIFFFaxCodesTableEntry( 9, 0xDA, 1344), // 0110 1101 0
new TIFFFaxCodesTableEntry( 9, 0xDB, 1408), // 0110 1101 1
new TIFFFaxCodesTableEntry( 9, 0x98, 1472), // 0100 1100 0
new TIFFFaxCodesTableEntry( 9, 0x99, 1536), // 0100 1100 1
new TIFFFaxCodesTableEntry( 9, 0x9A, 1600), // 0100 1101 0
new TIFFFaxCodesTableEntry( 6, 0x18, 1664), // 0110 00
new TIFFFaxCodesTableEntry( 9, 0x9B, 1728), // 0100 1101 1
new TIFFFaxCodesTableEntry(11, 0x08, 1792), // 0000 0001 000
new TIFFFaxCodesTableEntry(11, 0x0C, 1856), // 0000 0001 100
new TIFFFaxCodesTableEntry(11, 0x0D, 1920), // 0000 0001 101
new TIFFFaxCodesTableEntry(12, 0x12, 1984), // 0000 0001 0010
new TIFFFaxCodesTableEntry(12, 0x13, 2048), // 0000 0001 0011
new TIFFFaxCodesTableEntry(12, 0x14, 2112), // 0000 0001 0100
new TIFFFaxCodesTableEntry(12, 0x15, 2176), // 0000 0001 0101
new TIFFFaxCodesTableEntry(12, 0x16, 2240), // 0000 0001 0110
new TIFFFaxCodesTableEntry(12, 0x17, 2304), // 0000 0001 0111
new TIFFFaxCodesTableEntry(12, 0x1C, 2368), // 0000 0001 1100
new TIFFFaxCodesTableEntry(12, 0x1D, 2432), // 0000 0001 1101
new TIFFFaxCodesTableEntry(12, 0x1E, 2496), // 0000 0001 1110
new TIFFFaxCodesTableEntry(12, 0x1F, 2560), // 0000 0001 1111
new TIFFFaxCodesTableEntry(12, 0x01, G3CODE_EOL), // 0000 0000 0001
};
static readonly TIFFFaxCodesTableEntry[] TIFFFaxBlackCodes=new TIFFFaxCodesTableEntry[]
{
new TIFFFaxCodesTableEntry(10, 0x37, 0), // 0000 1101 11
new TIFFFaxCodesTableEntry( 3, 0x02, 1), // 010
new TIFFFaxCodesTableEntry( 2, 0x03, 2), // 11
new TIFFFaxCodesTableEntry( 2, 0x02, 3), // 10
new TIFFFaxCodesTableEntry( 3, 0x03, 4), // 011
new TIFFFaxCodesTableEntry( 4, 0x03, 5), // 0011
new TIFFFaxCodesTableEntry( 4, 0x02, 6), // 0010
new TIFFFaxCodesTableEntry( 5, 0x03, 7), // 0001 1
new TIFFFaxCodesTableEntry( 6, 0x05, 8), // 0001 01
new TIFFFaxCodesTableEntry( 6, 0x04, 9), // 0001 00
new TIFFFaxCodesTableEntry( 7, 0x04, 10), // 0000 100
new TIFFFaxCodesTableEntry( 7, 0x05, 11), // 0000 101
new TIFFFaxCodesTableEntry( 7, 0x07, 12), // 0000 111
new TIFFFaxCodesTableEntry( 8, 0x04, 13), // 0000 0100
new TIFFFaxCodesTableEntry( 8, 0x07, 14), // 0000 0111
new TIFFFaxCodesTableEntry( 9, 0x18, 15), // 0000 1100 0
new TIFFFaxCodesTableEntry(10, 0x17, 16), // 0000 0101 11
new TIFFFaxCodesTableEntry(10, 0x18, 17), // 0000 0110 00
new TIFFFaxCodesTableEntry(10, 0x08, 18), // 0000 0010 00
new TIFFFaxCodesTableEntry(11, 0x67, 19), // 0000 1100 111
new TIFFFaxCodesTableEntry(11, 0x68, 20), // 0000 1101 000
new TIFFFaxCodesTableEntry(11, 0x6C, 21), // 0000 1101 100
new TIFFFaxCodesTableEntry(11, 0x37, 22), // 0000 0110 111
new TIFFFaxCodesTableEntry(11, 0x28, 23), // 0000 0101 000
new TIFFFaxCodesTableEntry(11, 0x17, 24), // 0000 0010 111
new TIFFFaxCodesTableEntry(11, 0x18, 25), // 0000 0011 000
new TIFFFaxCodesTableEntry(12, 0xCA, 26), // 0000 1100 1010
new TIFFFaxCodesTableEntry(12, 0xCB, 27), // 0000 1100 1011
new TIFFFaxCodesTableEntry(12, 0xCC, 28), // 0000 1100 1100
new TIFFFaxCodesTableEntry(12, 0xCD, 29), // 0000 1100 1101
new TIFFFaxCodesTableEntry(12, 0x68, 30), // 0000 0110 1000
new TIFFFaxCodesTableEntry(12, 0x69, 31), // 0000 0110 1001
new TIFFFaxCodesTableEntry(12, 0x6A, 32), // 0000 0110 1010
new TIFFFaxCodesTableEntry(12, 0x6B, 33), // 0000 0110 1011
new TIFFFaxCodesTableEntry(12, 0xD2, 34), // 0000 1101 0010
new TIFFFaxCodesTableEntry(12, 0xD3, 35), // 0000 1101 0011
new TIFFFaxCodesTableEntry(12, 0xD4, 36), // 0000 1101 0100
new TIFFFaxCodesTableEntry(12, 0xD5, 37), // 0000 1101 0101
new TIFFFaxCodesTableEntry(12, 0xD6, 38), // 0000 1101 0110
new TIFFFaxCodesTableEntry(12, 0xD7, 39), // 0000 1101 0111
new TIFFFaxCodesTableEntry(12, 0x6C, 40), // 0000 0110 1100
new TIFFFaxCodesTableEntry(12, 0x6D, 41), // 0000 0110 1101
new TIFFFaxCodesTableEntry(12, 0xDA, 42), // 0000 1101 1010
new TIFFFaxCodesTableEntry(12, 0xDB, 43), // 0000 1101 1011
new TIFFFaxCodesTableEntry(12, 0x54, 44), // 0000 0101 0100
new TIFFFaxCodesTableEntry(12, 0x55, 45), // 0000 0101 0101
new TIFFFaxCodesTableEntry(12, 0x56, 46), // 0000 0101 0110
new TIFFFaxCodesTableEntry(12, 0x57, 47), // 0000 0101 0111
new TIFFFaxCodesTableEntry(12, 0x64, 48), // 0000 0110 0100
new TIFFFaxCodesTableEntry(12, 0x65, 49), // 0000 0110 0101
new TIFFFaxCodesTableEntry(12, 0x52, 50), // 0000 0101 0010
new TIFFFaxCodesTableEntry(12, 0x53, 51), // 0000 0101 0011
new TIFFFaxCodesTableEntry(12, 0x24, 52), // 0000 0010 0100
new TIFFFaxCodesTableEntry(12, 0x37, 53), // 0000 0011 0111
new TIFFFaxCodesTableEntry(12, 0x38, 54), // 0000 0011 1000
new TIFFFaxCodesTableEntry(12, 0x27, 55), // 0000 0010 0111
new TIFFFaxCodesTableEntry(12, 0x28, 56), // 0000 0010 1000
new TIFFFaxCodesTableEntry(12, 0x58, 57), // 0000 0101 1000
new TIFFFaxCodesTableEntry(12, 0x59, 58), // 0000 0101 1001
new TIFFFaxCodesTableEntry(12, 0x2B, 59), // 0000 0010 1011
new TIFFFaxCodesTableEntry(12, 0x2C, 60), // 0000 0010 1100
new TIFFFaxCodesTableEntry(12, 0x5A, 61), // 0000 0101 1010
new TIFFFaxCodesTableEntry(12, 0x66, 62), // 0000 0110 0110
new TIFFFaxCodesTableEntry(12, 0x67, 63), // 0000 0110 0111
new TIFFFaxCodesTableEntry(10, 0x0F, 64), // 0000 0011 11
new TIFFFaxCodesTableEntry(12, 0xC8, 128), // 0000 1100 1000
new TIFFFaxCodesTableEntry(12, 0xC9, 192), // 0000 1100 1001
new TIFFFaxCodesTableEntry(12, 0x5B, 256), // 0000 0101 1011
new TIFFFaxCodesTableEntry(12, 0x33, 320), // 0000 0011 0011
new TIFFFaxCodesTableEntry(12, 0x34, 384), // 0000 0011 0100
new TIFFFaxCodesTableEntry(12, 0x35, 448), // 0000 0011 0101
new TIFFFaxCodesTableEntry(13, 0x6C, 512), // 0000 0011 0110 0
new TIFFFaxCodesTableEntry(13, 0x6D, 576), // 0000 0011 0110 1
new TIFFFaxCodesTableEntry(13, 0x4A, 640), // 0000 0010 0101 0
new TIFFFaxCodesTableEntry(13, 0x4B, 704), // 0000 0010 0101 1
new TIFFFaxCodesTableEntry(13, 0x4C, 768), // 0000 0010 0110 0
new TIFFFaxCodesTableEntry(13, 0x4D, 832), // 0000 0010 0110 1
new TIFFFaxCodesTableEntry(13, 0x72, 896), // 0000 0011 1001 0
new TIFFFaxCodesTableEntry(13, 0x73, 960), // 0000 0011 1001 1
new TIFFFaxCodesTableEntry(13, 0x74, 1024), // 0000 0011 1010 0
new TIFFFaxCodesTableEntry(13, 0x75, 1088), // 0000 0011 1010 1
new TIFFFaxCodesTableEntry(13, 0x76, 1152), // 0000 0011 1011 0
new TIFFFaxCodesTableEntry(13, 0x77, 1216), // 0000 0011 1011 1
new TIFFFaxCodesTableEntry(13, 0x52, 1280), // 0000 0010 1001 0
new TIFFFaxCodesTableEntry(13, 0x53, 1344), // 0000 0010 1001 1
new TIFFFaxCodesTableEntry(13, 0x54, 1408), // 0000 0010 1010 0
new TIFFFaxCodesTableEntry(13, 0x55, 1472), // 0000 0010 1010 1
new TIFFFaxCodesTableEntry(13, 0x5A, 1536), // 0000 0010 1101 0
new TIFFFaxCodesTableEntry(13, 0x5B, 1600), // 0000 0010 1101 1
new TIFFFaxCodesTableEntry(13, 0x64, 1664), // 0000 0011 0010 0
new TIFFFaxCodesTableEntry(13, 0x65, 1728), // 0000 0011 0010 1
new TIFFFaxCodesTableEntry(11, 0x08, 1792), // 0000 0001 000
new TIFFFaxCodesTableEntry(11, 0x0C, 1856), // 0000 0001 100
new TIFFFaxCodesTableEntry(11, 0x0D, 1920), // 0000 0001 101
new TIFFFaxCodesTableEntry(12, 0x12, 1984), // 0000 0001 0010
new TIFFFaxCodesTableEntry(12, 0x13, 2048), // 0000 0001 0011
new TIFFFaxCodesTableEntry(12, 0x14, 2112), // 0000 0001 0100
new TIFFFaxCodesTableEntry(12, 0x15, 2176), // 0000 0001 0101
new TIFFFaxCodesTableEntry(12, 0x16, 2240), // 0000 0001 0110
new TIFFFaxCodesTableEntry(12, 0x17, 2304), // 0000 0001 0111
new TIFFFaxCodesTableEntry(12, 0x1C, 2368), // 0000 0001 1100
new TIFFFaxCodesTableEntry(12, 0x1D, 2432), // 0000 0001 1101
new TIFFFaxCodesTableEntry(12, 0x1E, 2496), // 0000 0001 1110
new TIFFFaxCodesTableEntry(12, 0x1F, 2560), // 0000 0001 1111
new TIFFFaxCodesTableEntry(12, 0x01, G3CODE_EOL), // 0000 0000 0001
};
}
}
#endif // CCITT_SUPPORT