xref: /libtiff-4.0.7/html/support.html (revision c59cbfc8)
1<HTML>
2<HEAD>
3<TITLE>
4TIFF 6.0 Specification Coverage
5</TITLE>
6</HEAD>
7<BODY BGCOLOR=white>
8<FONT FACE="Arial, Sans, Helvetica">
9<H1>
10<IMG SRC=images/strike.gif WIDTH=128 HEIGHT=100 ALIGN=left HSPACE=6>
11TIFF 6.0 Specification Coverage
12</H1>
13
14
15<P>
16The library is capable of dealing with images that are written to
17follow the 5.0 or 6.0 TIFF spec.  There is also considerable support
18for some of the more esoteric portions of the 6.0 TIFF spec.
19
20<P>
21<TABLE BORDER CELLPADDING=3>
22
23<TR>
24<TD VALIGN=top>
25<I>Core requirements</I>
26</TD>
27<TD>
28Both <TT>"MM"</TT> and <TT>"II"</TT> byte orders are handled.
29Both packed and separated planar configuration of samples.
30Any number of samples per pixel (memory permitting).
31Any image width and height (memory permitting).
32Multiple subfiles can be read and written.
33Editing is <B>not</B> supported in that related subfiles (e.g.
34a reduced resolution version of an image) are not automatically
35updated.
36<P>
37Tags handled:
38<TT>ExtraSamples</TT>,
39<TT>ImageWidth</TT>,
40<TT>ImageLength</TT>,
41<TT>NewSubfileType</TT>,
42<TT>ResolutionUnit</TT>.
43<TT>Rowsperstrip</TT>,
44<TT>StripOffsets</TT>,
45<TT>StripByteCounts</TT>,
46<TT>XResolution</TT>,
47<TT>YResolution</TT>,
48</TD>
49</TR>
50
51<TR>
52<TD VALIGN=top><I>Tiled Images</I></TD>
53<TD><TT>TileWidth</TT>,
54    <TT>TileLength</TT>,
55    <TT>TileOffsets</TT>,
56    <TT>TileByteCounts</TT>
57</TD>
58</TR>
59
60<TD VALIGN=top><I>Image Colorimetry Information</I></TD>
61<TD><TT>WhitePoint</TT>,
62    <TT>PrimaryChromaticities</TT>,
63    <TT>TransferFunction</TT>,
64    <TT>ReferenceBlackWhite</TT>
65</TD>
66</TR>
67
68<TR>
69<TD VALIGN=top><I>Class B for bilevel images</I></TD>
70<TD><TT>SamplesPerPixel</TT> = 1<BR>
71    <TT>BitsPerSample</TT> = 1<BR>
72    <TT>Compression</TT> = 1 (none), 2 (CCITT 1D), or 32773 (PackBits)<BR>
73    <TT>PhotometricInterpretation</TT> = 0 (Min-is-White), 1 (Min-is-Black)<BR>
74</TD>
75</TR>
76
77<TR>
78<TD VALIGN=top><I>Class G for grayscale images</I></TD>
79<TD><TT>SamplesPerPixel</TT> = 1<BR>
80    <TT>BitsPerSample</TT> = 4, 8<BR>
81    <TT>Compression</TT> = 1 (none) 5 (LZW)<BR>
82    <TT>PhotometricInterpretation</TT> = 0 (Min-is-White), 1 (Min-is-Black)<BR>
83</TD>
84
85</TR>
86<TR>
87<TD VALIGN=top><I>Class P for palette color images</I></TD>
88<TD><TT>SamplesPerPixel</TT> = 1<BR>
89    <TT>BitsPerSample</TT> = 1-8<BR>
90    <TT>Compression</TT> = 1 (none) 5 (LZW)<BR>
91    <TT>PhotometricInterpretation</TT> = 3 (Palette RGB)<BR>
92    <TT>ColorMap</TT>
93</TD>
94</TR>
95
96<TR>
97<TD VALIGN=top><I>Class R for RGB full color images</I></TD>
98<TD><TT>SamplesPerPixel</TT> = 3<BR>
99    <TT>BitsPerSample</TT> = <8,8,8><BR>
100    <TT>PlanarConfiguration</TT> = 1, 2<BR>
101    <TT>Compression</TT> = 1 (none) 5 (LZW)<BR>
102    <TT>PhotometricInterpretation</TT> = 2 (RGB)<BR>
103</TD>
104</TR>
105
106<TR>
107<TD VALIGN=top><I>Class F for facsimile</I></TD>
108<TD>(<I>Class B tags plus...</I>)<BR>
109    <TT>Compression</TT> = 3 (CCITT Group 3), 4 (CCITT Group 4)<BR>
110    <TT>FillOrder</TT> = 1 (MSB), 2 (LSB)<BR>
111    <TT>Group3Options</TT> = 1 (2d encoding), 4 (zero fill), 5 (2d+fill)<BR>
112    <TT>ImageWidth</TT> = 1728, 2048, 2482<BR>
113    <TT>NewSubFileType</TT> = 2<BR>
114    <TT>ResolutionUnit</TT> = 2 (Inch), 3 (Centimeter)<BR>
115    <TT>PageNumber</TT>,
116    <TT>XResolution</TT>,
117    <TT>YResolution</TT>,
118    <TT>Software</TT>,
119    <TT>BadFaxLines</TT>,
120    <TT>CleanFaxData</TT>,
121    <TT>ConsecutiveBadFaxLines</TT>,
122    <TT>DateTime</TT>,
123    <TT>DocumentName</TT>,
124    <TT>ImageDescription</TT>,
125    <TT>Orientation</TT>
126</TD>
127</TR>
128
129<TD VALIGN=top><I>Class S for separated images</I></TD>
130<TD><TT>SamplesPerPixel</TT> = 4<BR>
131    <TT>PlanarConfiguration</TT> = 1, 2<BR>
132    <TT>Compression</TT> = 1 (none), 5 (LZW)<BR>
133    <TT>PhotometricInterpretation</TT> = 5 (Separated)<BR>
134    <TT>InkSet</TT> = 1 (CMYK)<BR>
135    <TT>DotRange</TT>,
136    <TT>InkNames</TT>,
137    <TT>DotRange</TT>,
138    <TT>TargetPrinter</TT>
139</TD>
140</TR>
141
142<TD VALIGN=top><I>Class Y for YCbCr images</I></TD>
143<TD><TT>SamplesPerPixel</TT> = 3<BR>
144    <TT>BitsPerSample</TT> = <8,8,8><BR>
145    <TT>PlanarConfiguration</TT> = 1, 2<BR>
146    <TT>Compression</TT> = 1 (none),  5 (LZW), 7 (JPEG)<BR>
147    <TT>PhotometricInterpretation</TT> = 6 (YCbCr)<BR>
148    <TT>YCbCrCoefficients</TT>,
149    <TT>YCbCrSubsampling</TT>,
150    <TT>YCbCrPositioning</TT><BR>
151    (<I>colorimetry info from Appendix H; see above</I>)
152</TD>
153</TR>
154
155<TR>
156<TD VALIGN=top><I>Class "JPEG" for JPEG images (per TTN2)</I></TD>
157<TD><TT>PhotometricInterpretation</TT> = 1 (grayscale), 2 (RGB), 5 (CMYK), 6 (YCbCr)<BR>
158    (<I>Class Y tags if YCbCr</I>)<BR>
159    (<I>Class S tags if CMYK</I>)<BR>
160    <TT>Compression</TT> = 7 (JPEG)<BR>
161</TD>
162</TR>
163</TABLE>
164
165<P>
166In addition, the library supports some optional compression algorithms
167that are, in some cases, of dubious value.
168
169<PRE>
170    Compression = 32766	NeXT 2-bit encoding
171    Compression = 32809	ThunderScan 4-bit encoding
172    Compression = 32909	Pixar companded 11-bit ZIP encoding
173    Compression = 32946	PKZIP-style Deflate encoding (experimental)
174    Compression = 34676	SGI 32-bit Log Luminance encoding (experimental)
175    Compression = 34677	SGI 24-bit Log Luminance encoding (experimental)
176</PRE>
177
178Note that there is no support for the JPEG-related tags defined
179in the 6.0 specification; the JPEG support is based on the post-6.0
180proposal given in TIFF Technical Note #2.
181
182<P>
183<TABLE>
184<TR>
185<TD VALIGN=top><IMG SRC="images/info.gif"></TD>
186<TD>
187<EM>
188For more information on the experimental Log Luminance encoding
189consult the materials available at
190<A HREF="http://www.anyhere.com/gward/pixformat/tiffluv.html">
191http://www.anyhere.com/gward/pixformat/tiffluv.html
192</A>.
193</EM>
194</TD>
195</TR>
196</TABLE>
197
198<P>
199The following table shows the tags that are recognized
200and how they are used by the library.  If no use is indicated,
201then the library
202reads and writes the tag, but does not use it internally.
203
204<P>
205<TABLE BORDER WIDTH=100% CELLPADDING=2>
206<TR>
207<TH ALIGN=left>Tag Name</TH> <TH>Value</TH> <TH ALIGN=center>R/W</TH> <TH ALIGN=left>Library's Use (Comments)</TH>
208</TR>
209<TR>
210<TD><TT>NewSubFileType</TT></TD>
211<TD ALIGN=center>254</TD>
212<TD ALIGN=center>R/W</TD>
213<TD>none (called <TT>SubFileType</TT> in &lt;tiff.h&gt;)</TD>
214</TR>
215<TR>
216<TD><TT>SubFileType</TT></TD>
217<TD ALIGN=center>255</TD>
218<TD ALIGN=center>R/W</TD>
219<TD>none (called <TT>OSubFileType</TT> in &lt;tiff.h&gt;)</TD>
220</TR>
221<TR>
222<TD><TT>ImageWidth</TT></TD>
223<TD ALIGN=center>256</TD>
224<TD ALIGN=center>R/W</TD>
225<TD>lots</TD>
226</TR>
227<TR>
228<TD><TT>ImageLength</TT></TD>
229<TD ALIGN=center>257</TD>
230<TD ALIGN=center>R/W</TD>
231<TD>lots</TD>
232</TR>
233<TR>
234<TD><TT>BitsPerSample</TT></TD>
235<TD ALIGN=center>258</TD>
236<TD ALIGN=center>R/W</TD>
237<TD>lots</TD>
238</TR>
239<TR>
240<TD><TT>Compression</TT></TD>
241<TD ALIGN=center>259</TD>
242<TD ALIGN=center>R/W</TD>
243<TD>to select appropriate codec</TD>
244</TR>
245<TR>
246<TD><TT>PhotometricInterpretation</TT></TD>
247<TD ALIGN=center>262</TD>
248<TD ALIGN=center>R/W</TD>
249<TD>lots</TD>
250</TR>
251<TR>
252<TD><TT>Thresholding</TT></TD>
253<TD ALIGN=center>263</TD>
254<TD ALIGN=center>R/W</TD>
255<TD>&nbsp;</TD>
256</TR>
257<TR>
258<TD><TT>CellWidth</TT></TD>
259<TD ALIGN=center>264</TD>
260<TD>&nbsp;</TD>
261<TD>parsed but ignored</TD>
262</TR>
263<TR>
264<TD><TT>CellLength</TT></TD>
265<TD ALIGN=center>265</TD>
266<TD>&nbsp;</TD>
267<TD>parsed but ignored</TD>
268</TR>
269<TR>
270<TD><TT>FillOrder</TT></TD>
271<TD ALIGN=center>266</TD>
272<TD ALIGN=center>R/W</TD>
273<TD>control bit order</TD>
274</TR>
275<TR>
276<TD><TT>DocumentName</TT></TD>
277<TD ALIGN=center>269</TD>
278<TD ALIGN=center>R/W</TD>
279<TD>&nbsp;</TD>
280</TR>
281<TR>
282<TD><TT>ImageDescription</TT></TD>
283<TD ALIGN=center>270</TD>
284<TD ALIGN=center>R/W</TD>
285<TD>&nbsp;</TD>
286</TR>
287<TR>
288<TD><TT>Make</TT></TD>
289<TD ALIGN=center>271</TD>
290<TD ALIGN=center>R/W</TD>
291<TD>&nbsp;</TD>
292</TR>
293<TR>
294<TD><TT>Model</TT></TD>
295<TD ALIGN=center>272</TD>
296<TD ALIGN=center>R/W</TD>
297<TD>&nbsp;</TD>
298</TR>
299<TR>
300<TD><TT>StripOffsets</TT></TD>
301<TD ALIGN=center>273</TD>
302<TD ALIGN=center>R/W</TD>
303<TD>data i/o</TD>
304</TR>
305<TR>
306<TD><TT>Orientation</TT></TD>
307<TD ALIGN=center>274</TD>
308<TD ALIGN=center>R/W</TD>
309<TD>&nbsp;</TD>
310</TR>
311<TR>
312<TD><TT>SamplesPerPixel</TT></TD>
313<TD ALIGN=center>277</TD>
314<TD ALIGN=center>R/W</TD>
315<TD>lots</TD>
316</TR>
317<TR>
318<TD><TT>RowsPerStrip</TT></TD>
319<TD ALIGN=center>278</TD>
320<TD ALIGN=center>R/W</TD>
321<TD>data i/o</TD>
322</TR>
323<TR>
324<TD><TT>StripByteCounts</TT></TD>
325<TD ALIGN=center>279</TD>
326<TD ALIGN=center>R/W</TD>
327<TD>data i/o</TD>
328</TR>
329<TR>
330<TD><TT>MinSampleValue</TT></TD>
331<TD ALIGN=center>280</TD>
332<TD ALIGN=center>R/W</TD>
333<TD>&nbsp;</TD>
334</TR>
335<TR>
336<TD><TT>MaxSampleValue</TT></TD>
337<TD ALIGN=center>281</TD>
338<TD ALIGN=center>R/W</TD>
339<TD>&nbsp;</TD>
340</TR>
341<TR>
342<TD><TT>XResolution</TT></TD>
343<TD ALIGN=center>282</TD>
344<TD ALIGN=center>R/W</TD>
345<TD>&nbsp;</TD>
346</TR>
347<TR>
348<TD><TT>YResolution</TT></TD>
349<TD ALIGN=center>283</TD>
350<TD ALIGN=center>R/W</TD>
351<TD>used by Group 3 2d encoder</TD>
352</TR>
353<TR>
354<TD><TT>PlanarConfiguration</TT></TD>
355<TD ALIGN=center>284</TD>
356<TD ALIGN=center>R/W</TD>
357<TD>data i/o</TD>
358</TR>
359<TR>
360<TD><TT>PageName</TT></TD>
361<TD ALIGN=center>285</TD>
362<TD ALIGN=center>R/W</TD>
363<TD>&nbsp;</TD>
364</TR>
365<TR>
366<TD><TT>XPosition</TT></TD>
367<TD ALIGN=center>286</TD>
368<TD ALIGN=center>R/W</TD>
369<TD>&nbsp;</TD>
370</TR>
371<TR>
372<TD><TT>YPosition</TT></TD>
373<TD ALIGN=center>286</TD>
374<TD ALIGN=center>R/W</TD>
375<TD>&nbsp;</TD>
376</TR>
377<TR>
378<TD><TT>FreeOffsets</TT></TD>
379<TD ALIGN=center>288</TD>
380<TD>&nbsp;</TD>
381<TD>parsed but ignored</TD>
382</TR>
383<TR>
384<TD><TT>FreeByteCounts</TT></TD>
385<TD ALIGN=center>289</TD>
386<TD>&nbsp;</TD>
387<TD>parsed but ignored</TD>
388</TR>
389<TR>
390<TD><TT>GrayResponseUnit</TT></TD>
391<TD ALIGN=center>290</TD>
392<TD>&nbsp;</TD>
393<TD>parsed but ignored</TD>
394</TR>
395<TR>
396<TD><TT>GrayResponseCurve</TT></TD>
397<TD ALIGN=center>291</TD>
398<TD>&nbsp;</TD>
399<TD>parsed but ignored</TD>
400</TR>
401<TR>
402<TD><TT>Group3Options</TT></TD>
403<TD ALIGN=center>292</TD>
404<TD ALIGN=center>R/W</TD>
405<TD>used by Group 3 codec</TD>
406</TR>
407<TR>
408<TD><TT>Group4Options</TT></TD>
409<TD ALIGN=center>293</TD>
410<TD ALIGN=center>R/W</TD>
411<TD>&nbsp;</TD>
412</TR>
413<TR>
414<TD><TT>ResolutionUnit</TT></TD>
415<TD ALIGN=center>296</TD>
416<TD ALIGN=center>R/W</TD>
417<TD>used by Group 3 2d encoder</TD>
418</TR>
419<TR>
420<TD><TT>PageNumber</TT></TD>
421<TD ALIGN=center>297</TD>
422<TD ALIGN=center>R/W</TD>
423<TD>&nbsp;</TD>
424</TR>
425<TR>
426<TD><TT>ColorResponseUnit</TT></TD>
427<TD ALIGN=center>300</TD>
428<TD>&nbsp;</TD>
429<TD>parsed but ignored</TD>
430</TR>
431<TR>
432<TD><TT>TransferFunction</TT></TD>
433<TD ALIGN=center>301</TD>
434<TD ALIGN=center>R/W</TD>
435<TD>&nbsp;</TD>
436</TR>
437<TR>
438<TD><TT>Software</TT></TD>
439<TD ALIGN=center>305</TD>
440<TD ALIGN=center>R/W</TD>
441<TD>&nbsp;</TD>
442</TR>
443<TR>
444<TD><TT>DateTime</TT></TD>
445<TD ALIGN=center>306</TD>
446<TD ALIGN=center>R/W</TD>
447<TD>&nbsp;</TD>
448</TR>
449<TR>
450<TD><TT>Artist</TT></TD>
451<TD ALIGN=center>315</TD>
452<TD ALIGN=center>R/W</TD>
453<TD>&nbsp;</TD>
454</TR>
455<TR>
456<TD><TT>HostComputer</TT></TD>
457<TD ALIGN=center>316</TD>
458<TD ALIGN=center>R/W</TD>
459<TD>&nbsp;</TD>
460</TR>
461<TR>
462<TD><TT>Predictor</TT></TD>
463<TD ALIGN=center>317</TD>
464<TD ALIGN=center>R/W</TD>
465<TD>used by LZW codec</TD>
466</TR>
467<TR>
468<TD><TT>WhitePoint</TT></TD>
469<TD ALIGN=center>318</TD>
470<TD ALIGN=center>R/W</TD>
471<TD>&nbsp;</TD>
472</TR>
473<TR>
474<TD><TT>PrimaryChromacities</TT></TD>
475<TD ALIGN=center>319</TD>
476<TD ALIGN=center>R/W</TD>
477<TD>&nbsp;</TD>
478</TR>
479<TR>
480<TD><TT>ColorMap</TT></TD>
481<TD ALIGN=center>320</TD>
482<TD ALIGN=center>R/W</TD>
483<TD>&nbsp;</TD>
484</TR>
485<TR>
486<TD><TT>TileWidth</TT></TD>
487<TD ALIGN=center>322</TD>
488<TD ALIGN=center>R/W</TD>
489<TD>data i/o</TD>
490</TR>
491<TR>
492<TD><TT>TileLength</TT></TD>
493<TD ALIGN=center>323</TD>
494<TD ALIGN=center>R/W</TD>
495<TD>data i/o</TD>
496</TR>
497<TR>
498<TD><TT>TileOffsets</TT></TD>
499<TD ALIGN=center>324</TD>
500<TD ALIGN=center>R/W</TD>
501<TD>data i/o</TD>
502</TR>
503<TR>
504<TD><TT>TileByteCounts</TT></TD>
505<TD ALIGN=center>324</TD>
506<TD ALIGN=center>R/W</TD>
507<TD>data i/o</TD>
508</TR>
509<TR>
510<TD><TT>BadFaxLines</TT></TD>
511<TD ALIGN=center>326</TD>
512<TD ALIGN=center>R/W</TD>
513<TD>&nbsp;</TD>
514</TR>
515<TR>
516<TD><TT>CleanFaxData</TT></TD>
517<TD ALIGN=center>327</TD>
518<TD ALIGN=center>R/W</TD>
519<TD>&nbsp;</TD>
520</TR>
521<TR>
522<TD><TT>ConsecutiveBadFaxLines</TT></TD>
523<TD ALIGN=center>328</TD>
524<TD ALIGN=center>R/W</TD>
525<TD>&nbsp;</TD>
526</TR>
527<TR>
528<TD><TT>SubIFD</TT></TD>
529<TD ALIGN=center>330</TD>
530<TD ALIGN=center>R/W</TD>
531<TD>subimage descriptor support</TD>
532</TR>
533<TR>
534<TD><TT>InkSet</TT></TD>
535<TD ALIGN=center>332</TD>
536<TD ALIGN=center>R/W</TD>
537<TD>&nbsp;</TD>
538</TR>
539<TR>
540<TD><TT>InkNames</TT></TD>
541<TD ALIGN=center>333</TD>
542<TD ALIGN=center>R/W</TD>
543<TD>&nbsp;</TD>
544</TR>
545<TR>
546<TD><TT>DotRange</TT></TD>
547<TD ALIGN=center>336</TD>
548<TD ALIGN=center>R/W</TD>
549<TD>&nbsp;</TD>
550</TR>
551<TR>
552<TD><TT>TargetPrinter</TT></TD>
553<TD ALIGN=center>337</TD>
554<TD ALIGN=center>R/W</TD>
555<TD>&nbsp;</TD>
556</TR>
557<TR>
558<TD><TT>ExtraSamples</TT></TD>
559<TD ALIGN=center>338</TD>
560<TD ALIGN=center>R/W</TD>
561<TD>lots</TD>
562</TR>
563<TR>
564<TD><TT>SampleFormat</TT></TD>
565<TD ALIGN=center>339</TD>
566<TD ALIGN=center>R/W</TD>
567<TD>&nbsp;</TD>
568</TR>
569<TR>
570<TD><TT>SMinSampleValue</TT></TD>
571<TD ALIGN=center>340</TD>
572<TD ALIGN=center>R/W</TD>
573<TD>&nbsp;</TD>
574</TR>
575<TR>
576<TD><TT>SMaxSampleValue</TT></TD>
577<TD ALIGN=center>341</TD>
578<TD ALIGN=center>R/W</TD>
579<TD>&nbsp;</TD>
580</TR>
581<TR>
582<TD><TT>JPEGTables</TT></TD>
583<TD ALIGN=center>347</TD>
584<TD ALIGN=center>R/W</TD>
585<TD>used by JPEG codec</TD>
586</TR>
587<TR>
588<TD><TT>YCbCrCoefficients</TT></TD>
589<TD ALIGN=center>529</TD>
590<TD ALIGN=center>R/W</TD>
591<TD>used by <TT>TIFFReadRGBAImage</TT> support</TD>
592</TR>
593<TR>
594<TD><TT>YCbCrSubsampling</TT></TD>
595<TD ALIGN=center>530</TD>
596<TD ALIGN=center>R/W</TD>
597<TD>tile/strip size calculations</TD>
598</TR>
599<TR>
600<TD><TT>YCbCrPositioning</TT></TD>
601<TD ALIGN=center>531</TD>
602<TD ALIGN=center>R/W</TD>
603<TD>&nbsp;</TD>
604</TR>
605<TR>
606<TD><TT>ReferenceBlackWhite</TT></TD>
607<TD ALIGN=center>532</TD>
608<TD ALIGN=center>R/W</TD>
609<TD>&nbsp;</TD>
610</TR>
611<TR>
612<TD><TT>Matteing</TT></TD>
613<TD ALIGN=center>32995</TD>
614<TD ALIGN=center>R</TD>
615<TD>none (obsoleted by <TT>ExtraSamples</TT> tag)</TD>
616</TR>
617<TR>
618<TD><TT>DataType</TT></TD>
619<TD ALIGN=center>32996</TD>
620<TD ALIGN=center>R</TD>
621<TD>none (obsoleted by <TT>SampleFormat</TT> tag)</TD>
622</TR>
623<TR>
624<TD><TT>ImageDepth</TT></TD>
625<TD ALIGN=center>32997</TD>
626<TD ALIGN=center>R/W</TD>
627<TD>tile/strip calculations</TD>
628</TR>
629<TR>
630<TD><TT>TileDepth</TT></TD>
631<TD ALIGN=center>32998</TD>
632<TD ALIGN=center>R/W</TD>
633<TD>tile/strip calculations</TD>
634</TR>
635<TR>
636<TD><TT>StoNits</TT></TD>
637<TD ALIGN=center>37439</TD>
638<TD ALIGN=center>R/W</TD>
639<TD>&nbsp;</TD>
640</TR>
641</TABLE>
642
643<P>
644The <TT>Matteing</TT> and <TT>DataType</TT>
645tags have been obsoleted by the 6.0
646<TT>ExtraSamples</TT> and <TT>SampleFormat</TT> tags.
647Consult the documentation on the
648<TT>ExtraSamples</TT> tag and Associated Alpha for elaboration.  Note however
649that if you use Associated Alpha, you are expected to save data that is
650pre-multipled by Alpha.  If this means nothing to you, check out
651Porter & Duff's paper in the '84 SIGGRAPH proceedings: "Compositing Digital
652Images".
653
654<P>
655The <TT>ImageDepth</TT>
656tag is a non-standard, but registered tag that specifies
657the Z-dimension of volumetric data.  The combination of <TT>ImageWidth</TT>,
658<TT>ImageLength</TT>, and <TT>ImageDepth</TT>,
659defines a 3D volume of pixels that are
660further specified by <TT>BitsPerSample</TT> and
661<TT>SamplesPerPixel</TT>.  The <TT>TileDepth</TT>
662tag (also non-standard, but registered) can be used to specified a
663subvolume "tiling" of a volume of data.
664
665<P>
666The Colorimetry, and CMYK tags are additions that appear in TIFF 6.0.
667Consult the TIFF 6.0 specification included in the <B>doc</B> directory
668and <A HREF=document.html>online</A>.
669
670<P>
671The JPEG-related tag is specified in
672<A HREF="TIFFTechNote2.html">TIFF Technical Note #2</A> which defines
673a revised JPEG-in-TIFF scheme (revised over that appendix that was
674part of the TIFF 6.0 specification).
675
676
677
678<P>
679<HR>
680
681Last updated: $Date: 2005-09-30 15:38:02 $
682
683</BODY>
684</HTML>
685