Skip to content
Surf Wiki
Save to docs
general/computer-related-introductions-in-1986

From Surf Wiki (app.surf) — the open knowledge base

TIFF

Series of image file formats


Summary

Series of image file formats

FieldValue
nameTIFF
icon[[File:TIFF wordmark logo.svgclass=skin-invert-imageframeless]]
iconcaptionWordmark of the TIFF Revision 6.0
_noextcodeon
extensions,
_nomimecodeon
mime{{plainlist
type codeTIFF
uniform typepublic.tiff
magic49 49 2A 00 or 4D 4D 00 2A
ownerAldus Corporation, now Adobe Inc.
released
latest release versionTIFF 6.0
latest release date
TIFF Supplement 2 /
genreImage file format
extended fromtiff
extended toExif, DCF, TIFF/EP, TIFF/IT, TIFF-FX, GeoTIFF
url

TIFF Supplement 2 /

Tag Image File Format or Tagged Image File Format, commonly known by the abbreviations TIFF or TIF, is an image file format for storing raster graphics images, popular among graphic artists, the publishing industry, and photographers. TIFF is widely supported by scanning, faxing, word processing, optical character recognition, image manipulation, desktop publishing, and page-layout applications.

The format was created by Stephen Carlsen, an engineer at Aldus Corporation, for use in desktop publishing. It published the latest version 6.0 in 1992, subsequently updated with an Adobe Systems copyright after the latter acquired Aldus in 1994. Several Aldus or Adobe technical notes have been published with minor extensions to the format, and several specifications have been based on TIFF 6.0, including TIFF/EP (ISO 12234-2), TIFF/IT (ISO 12639),{{cite web |access-date=2009-05-29 |archive-date=2016-03-03 |archive-url=https://web.archive.org/web/20160303230009/http://www.iso.org/iso/iso_catalogue/catalogue_ics/catalogue_detail_ics.htm?csnumber=2181 |url-status=live |access-date=2009-05-29 |archive-date=2016-12-13 |archive-url=https://web.archive.org/web/20161213054150/http://digitalpreservation.gov/formats/fdd/fdd000072.shtml |url-status=live

History

TIFF was created as an attempt to get desktop scanner vendors of the mid-1980s to agree on a common scanned image file format, in place of a multitude of proprietary formats. Carlsen's three objectives were: (1) Implement import and printing of 'basic' bitmapped images, like MacPaint files. (2) Implement import and printing of higher resolution images, coming from scanners. (3) Define and promote an industry standard for storing and processing scanned images, so that Aldus wouldn't have to write import filters for every model of every scanner entering the budding desktop scanner market.

In the beginning, TIFF was only a binary image format (only two possible values for each pixel), because that was all that desktop scanners could handle. As scanners became more powerful, and as desktop computer disk space became more plentiful, TIFF grew to accommodate grayscale images, then color images. Today, TIFF, along with JPEG and PNG, is a popular format for deep-color images.

The first version of the TIFF specification was published by the Aldus Corporation in the autumn of 1986 after two major earlier draft releases. It can be labeled as Revision 3.0. It was published after a series of meetings with various scanner manufacturers and software developers. In April 1987 Revision 4.0 was released and it contained mostly minor enhancements. In October 1988 Revision 5.0 was released and it added support for palette color images and LZW compression.

TIFF is a complex format, defining many tags of which typically only a few are used in each file. This led to implementations supporting many varying subsets of the format, a situation that gave rise to the joke that TIFF stands for Thousands of Incompatible File Formats. This problem was addressed in revision 6.0 of the TIFF specification (June 1992) by introducing a distinction between Baseline TIFF (which all implementations were required to support) and TIFF Extensions (which are optional). Additional extensions are defined in two supplements to the specification which were published in September 1995 and March 2002 respectively.

Overview

A TIFF file contains one or several images, termed subfiles in the specification. The basic use case for having multiple subfiles is to encode a multipage telefax in a single file, but it is also allowed to have different subfiles be different variants of the same image, for example scanned at different resolutions. Rather than being a continuous range of bytes in the file, each subfile is a data structure whose top-level entity is called an image file directory (IFD). Baseline TIFF readers are only required to make use of the first subfile, but each IFD has a field for linking to a next IFD.

The IFDs are where the tags for which TIFF is named are located. Each IFD contains one or several entries, each of which is identified by its tag. The tags are arbitrary 16-bit numbers; their symbolic names such as ImageWidth often used in discussions of TIFF data do not appear explicitly in the file itself. Each IFD entry has an associated value, which may be decoded based on general rules of the format, but it depends on the tag what that value then means. There may within a single IFD be no more than one entry with any particular tag. Some tags are for linking to the actual image data, other tags specify how the image data should be interpreted, and still other tags are used for image metadata.

TIFF images are made up of rectangular grids of pixels. The two axes of this geometry are termed horizontal (or X, or width) and vertical (or Y, or length). Horizontal and vertical resolution need not be equal (since in a telefax they typically would not be equal). A baseline TIFF image divides the vertical range of the image into one or several strips, which are encoded (in particular: compressed) separately. Historically this served to facilitate TIFF readers (such as fax machines) with limited capacity to store uncompressed data — one strip would be decoded and then immediately printed — but the present specification motivates it by "increased editing flexibility and efficient I/O buffering". A TIFF extension provides the alternative of tiled images, in which case both the horizontal and the vertical ranges of the image are decomposed into smaller units.

An example of these things, which also serves to give a flavor of how tags are used in the TIFF encoding of images, is that a striped TIFF image would use tags 273 (StripOffsets), 278 (RowsPerStrip), and 279 (StripByteCounts). The StripOffsets point to the blocks of image data, the StripByteCounts say how long each of these blocks are (as stored in the file), and RowsPerStrip says how many rows of pixels there are in a strip; the latter is required even in the case of having just one strip, in which case it merely duplicates the value of tag 257 (ImageLength). A tiled TIFF image instead uses tags 322 (TileWidth), 323 (TileLength), 324 (TileOffsets), and 325 (TileByteCounts). The pixels within each strip or tile appear in row-major order, left to right and top to bottom.

The data for one pixel is made up of one or several samples; for example an RGB image would have one Red sample, one Green sample, and one Blue sample per pixel, whereas a greyscale or palette color image only has one sample per pixel. TIFF allows for both additive (e.g. RGB, RGBA) and subtractive (e.g. CMYK) color models. TIFF does not constrain the number of samples per pixel (except that there must be enough samples for the chosen color model), nor does it constrain how many bits are encoded for each sample, but baseline TIFF only requires that readers support a few combinations of color model and bit-depth of images. Support for custom sets of samples is very useful for scientific applications; 3 samples per pixel is at the low end of multispectral imaging, and hyperspectral imaging may require hundreds of samples per pixel. TIFF supports having all samples for a pixel next to each other within a single strip/tile (PlanarConfiguration = 1) but also different samples in different strips/tiles (PlanarConfiguration = 2). The default format for a sample value is as an unsigned integer, but a TIFF extension allows declaring them as alternatively being signed integers or IEEE-754 floats, as well as specify a custom range for valid sample values.

TIFF images may be uncompressed, compressed using a lossless compression scheme, or compressed using a lossy compression scheme. The lossless LZW compression scheme has at times been regarded as the standard compression for TIFF, but this is technically a TIFF extension, and the TIFF6 specification notes the patent situation regarding LZW. Compression schemes vary significantly in at what level they process the data: LZW acts on the stream of bytes encoding a strip or tile (without regard to sample structure, bit depth, or row width), whereas the JPEG compression scheme both transforms the sample structure of pixels (switching to a different color model) and encodes pixels in 8×8 blocks rather than row by row.

Most data in TIFF files are numerical, but the format supports declaring data as rather being textual, if appropriate for a particular tag. Tags that take textual values include Artist, Copyright, DateTime, DocumentName, InkNames, and Model.

MIME type

The MIME type image/tiff (defined in RFC 3302) without an application parameter is used for Baseline TIFF 6.0 files or to indicate that it is not necessary to identify a specific subset of TIFF or TIFF extensions. The optional "application" parameter (Example: Content-type: image/tiff; application=foo) is defined for image/tiff to identify a particular subset of TIFF and TIFF extensions for the encoded image data, if it is known. According to RFC 3302, specific TIFF subsets or TIFF extensions used in the application parameter must be published as an RFC.

MIME type image/tiff-fx (defined in RFC 3949 and RFC 3950) is based on TIFF 6.0 with TIFF Technical Notes TTN1 (Trees) and TTN2 (Replacement TIFF/JPEG specification). It is used for Internet fax compatible with the ITU-T Recommendations for Group 3 black-and-white, grayscale and color fax.

Digital preservation

Adobe holds the copyright on the TIFF specification (aka TIFF 6.0) along with the two supplements that have been published. These documents can be found on the Adobe TIFF Resources page. The Fax standard in RFC 3949 is based on these TIFF specifications.

TIFF files that strictly use the basic "tag sets" as defined in TIFF 6.0 along with restricting the compression technology to the methods identified in TIFF 6.0 and are adequately tested and verified by multiple sources for all documents being created can be used for storing documents. Commonly seen issues encountered in the content and document management industry associated with the use of TIFF files arise when the structures contain proprietary headers, are not properly documented, or contain "wrappers" or other containers around the TIFF datasets, or include improper compression technologies, or those compression technologies are not properly implemented.

Variants of TIFF can be used within document imaging and content/document management systems using CCITT Group IV 2D compression which supports black-and-white (bitonal, monochrome) images, among other compression technologies that support color. When storage capacity and network bandwidth was a greater issue than commonly seen in today's server environments, high-volume storage scanning, documents were scanned in black and white (not in color or in grayscale) to conserve storage capacity.

The inclusion of the SampleFormat tag in TIFF 6.0 allows TIFF files to handle advanced pixel data types, including integer images with more than 8 bits per channel and floating point images. This tag made TIFF 6.0 a viable format for scientific image processing where extended precision is required. An example would be the use of TIFF to store images acquired using scientific CCD cameras that provide up to 16 bits per photosite of intensity resolution. Storing a sequence of images in a single TIFF file is also possible, and is allowed under TIFF 6.0, provided the rules for multi-page images are followed.

Details

TIFF is a flexible, adaptable file format for handling images and data within a single file, by including the header tags (size, definition, image-data arrangement, applied image compression) defining the image's geometry. A TIFF file, for example, can be a container holding JPEG (lossy) and PackBits (lossless) compressed images. A TIFF file also can include a vector-based clipping path (outlines, croppings, image frames). The ability to store image data in a lossless format makes a TIFF file a useful image archive, because, unlike standard JPEG files, a TIFF file using lossless compression (or none) may be edited and re-saved without losing image quality. This is not the case when using the TIFF as a container holding compressed JPEG. Other TIFF options are layers and pages.

TIFF offers the option of using LZW compression, a lossless data-compression technique for reducing a file's size. Use of this option was limited by patents on the LZW technique until their expiration in 2004.

The TIFF 6.0 specification consists of the following parts:

  • Introduction (contains information about TIFF Administration, usage of Private fields and values, etc.)
  • Part 1: Baseline TIFF
  • Part 2: TIFF Extensions
  • Part 3: Appendices

{{anchor|Baseline TIFF}}Part 1: Baseline TIFF

When TIFF was introduced, its extensibility provoked compatibility problems. The flexibility in encoding gave rise to the joke that TIFF stands for Thousands of Incompatible File Formats. To avoid these problems, every TIFF reader was required to read Baseline TIFF. Among other things, Baseline TIFF does not include layers, or compressed JPEG or LZW images. Baseline TIFF is formally known as TIFF 6.0, Part 1: Baseline TIFF.

The following is an incomplete list of required Baseline TIFF features:

Multiple subfiles

TIFF readers must be prepared for multiple/multi-page images (subfiles) per TIFF file, although they are not required to actually do anything with images after the first one.

There may be more than one Image File Directory (IFD) in a TIFF file. Each IFD defines a subfile. One use of subfiles is to describe related images, such as the pages of a facsimile document. A Baseline TIFF reader is not required to read any IFD beyond the first one.

Strips

A baseline TIFF image is composed of one or more strips. A strip (or band) is a subsection of the image composed of one or more rows. Each strip may be compressed independently of the entire image, and each begins on a byte boundary. If the image height is not evenly divisible by the number of rows in the strip, the last strip may contain fewer rows. If strip definition tags are omitted, the image is assumed to contain a single strip.

Compression

Baseline TIFF readers must handle the following three compression schemes:

  • Zero compression
  • CCITT Group 3 1-Dimensional Modified Huffman RLE
  • PackBits compression - a form of run-length encoding

Image types

Baseline TIFF image types are: bilevel, grayscale, palette-color, and RGB full-color images.

Byte order

Every TIFF file begins with a two-byte indicator of byte order: "II" for little-endian (a.k.a. "Intel byte ordering", ) or "MM" for big-endian (a.k.a. "Motorola byte ordering", ) byte ordering. The next two-byte word contains the format version number, which has always been 42 for every version of TIFF (e.g., TIFF v5.0 and TIFF v6.0).{{cite book | archive-url = https://web.archive.org/web/20081204070129/http://cool-palimpsest.stanford.edu/bytopic/imaging/std/tiff5.html |archive-date = 2008-12-04 | access-date = 2009-06-29 All two-byte words, double words, etc., in the TIFF file are assumed to be in the indicated byte order. The TIFF 6.0 specification states that compliant TIFF readers must support both byte orders (II and MM); writers may use either.{{cite book |access-date = 2022-06-29 |archive-url=https://web.archive.org/web/20210108174645/https://www.adobe.io/content/dam/udp/en/open/standards/tiff/TIFF6.pdf |archive-date=8 January 2021 |url-status=dead}}

Other TIFF fields

TIFF readers must be prepared to encounter and ignore private fields not described in the TIFF specification. TIFF readers must not refuse to read a TIFF file if optional fields do not exist.

{{anchor|TIFF Extensions}}Part 2: TIFF Extensions

Many TIFF readers support tags additional to those in Baseline TIFF, but not every reader supports every extension. As a consequence, Baseline TIFF features became the lowest common denominator for TIFF. Baseline TIFF features are extended in TIFF Extensions (defined in the TIFF 6.0 Part 2 specification) but extensions can also be defined in private tags.

The TIFF Extensions are formally known as TIFF 6.0, Part 2: TIFF Extensions. Here are some examples of TIFF extensions defined in TIFF 6.0 specification:

Compression

  • CCITT T.4 bi-level encoding
  • CCITT T.6 bi-level encoding
  • LZW
  • JPEG

Image types

  • CMYK Images
  • YCbCr Images
  • HalftoneHints
  • Tiled Images
  • CIE Lab* Images

Image trees

A baseline TIFF file can contain a sequence of images (IFD). Typically, all the images are related but represent different data, such as the pages of a document. In order to explicitly support multiple views of the same data, the SubIFD tag was introduced. This allows the images to be defined along a tree structure. Each image can have a sequence of children, each child being itself an image. The typical usage is to provide thumbnails or several versions of an image in different color spaces.

Tiles

A TIFF image may also be composed of a number of tiles. All tiles in the same image have the same dimensions and may be compressed independently of the entire image, similar to strips (see above). Tiled images are part of TIFF 6.0, Part 2: TIFF Extensions, so the support for tiled images is not required in Baseline TIFF readers.

Other extensions

According to TIFF 6.0 specification (Introduction), all TIFF files using proposed TIFF extensions that are not approved by Adobe as part of Baseline TIFF (typically for specialized uses of TIFF that do not fall within the domain of publishing or general graphics or picture interchange) should be either not called TIFF files or should be marked some way so that they will not be confused with mainstream TIFF files.

Private tags

Developers can apply for a block of "private tags" to enable them to include their own proprietary information inside a TIFF file without causing problems for file interchange. TIFF readers are required to ignore tags that they do not recognize, and a registered developer's private tags are guaranteed not to clash with anyone else's tags or with the standard set of tags defined in the specification. Private tags are numbered in the range 32,768 and higher.

Private tags are reserved for information meaningful only for some organization, or for experiments with a new compression scheme within TIFF. Upon request, the TIFF administrator (currently Adobe) will allocate and register one or more private tags for an organization, to avoid possible conflicts with other organizations. Organizations and developers are discouraged from choosing their own tag numbers arbitrarily, because doing so could cause serious compatibility problems. However, if there is little or no chance that TIFF files will escape a private environment, organizations and developers are encouraged to consider using TIFF tags in the "reusable" 65,000–65,535 range. There is no need to contact Adobe when using numbers in this range.

TIFF Compression Tag

The TIFF Tag 259 (010316) stores the information about the Compression method. The default value is 1 = no compression.

Most TIFF writers and TIFF readers support only some TIFF compression schemes. Here are some examples of used TIFF compression schemes:

Tag valueCompression schemeLossy/losslessSpecificationDescriptionImage typesUsage and support
000116NoneLosslessTIFF 6.0Baseline TIFFAll
000216CCITT Group 3 1-Dimensional Modified Huffman run-length encoding (a.k.a. MH or CCITT 1D)LosslessTIFF 6.0Baseline TIFF; compression based on ITU-T T.4Black and white
000316CCITT T.4 bi-level encoding as specified in section 4, Coding, of [//www.itu.int/rec/T-REC-T.4/en ITU-T Recommendation T.4] (a.k.a. CCITT Group 3 fax encoding or CCITT Group 3 2D)LosslessTIFF 6.0TIFF 6.0 Extensions; compression based on ITU-T T.4Black and white
000416CCITT T.6 bi-level encoding as specified in section 2 of [//www.itu.int/rec/T-REC-T.6/en ITU-T Recommendation T.6] (a.k.a. CCITT Group 4 fax encoding)LosslessTIFF 6.0TIFF 6.0 extensions; compression based on ITU-T T.6Black and white
000516Lempel–Ziv–WelchLosslessTIFF 6.0TIFF 6.0 Extensions; first defined in TIFF 5 (1988); a patented compression algorithm, but the patents expired in 2003 and 2004All
000616JPEG (obsolete 'old-style' JPEG, later superseded in Technote2)LossyTIFF 6.0TIFF 6.0 Extensions; first defined in TIFF 6 (1992); obsolete, should never be written.Continuous-tone
000716JPEG ('new-style' JPEG)LossyTIFF 6 Technote2 (1995)supersedes old-style JPEG compression; it is a TIFF 6.0 extension.Continuous-tone
000816Deflate (zlib), Adobe variant (official)LosslessTIFF Specification Supplement 2 (2002)RFC 1950 (1996), RFC 1951 (1996), Adobe Photoshop TIFF Technical Notes; it is a TIFF 6.0 extension.All
000916JBIG, per [//www.itu.int/rec/T-REC-T.85/en ITU-T T.85]LosslessTIFF-FXRFC 2301 (1998), RFC 3949 (2005)Black and white
000A16JBIG, per [//www.itu.int/rec/T-REC-T.43/en ITU-T T.43]LosslessTIFF-FXRFC 2301 (1998), RFC 3949 (2005)Black and white
7FFE16NeXT RLE 2-bit greyscale encodingProprietary
800516PackBits (a.k.a. Macintosh RLE)LosslessTIFF 6.0Baseline TIFFAll
802916ThunderScan RLE 4-bit encodingProprietaryBlack and white
807F16RasterPadding in continuous tone (CT) or monochrome picture (MP)LosslessTIFF/IT (1998, 2004)ISO 12639
808016RLE for line work (LW)LosslessTIFF/IT (1998, 2004)ISO 12639
808116RLE for high-resolution continuous-tone (HC)LosslessTIFF/IT (1998, 2004)ISO 12639
808216RLE for binary line work (BL)LosslessTIFF/IT (1998, 2004)ISO 12639
80B216Deflate, PKZIP variant (obsolete)LosslessProprietaryAccording to TIFF Specification Supplement 2 it should be considered obsolete but reading is recommendedAll
80B316Kodak DCSProprietary
876516JBIGLibTIFFBlack and white
879816JPEG2000ProprietaryIncludes a complete JP2 file inside a TIFF file, not recommended. Introduced by Leadtools.
879916Nikon NEF CompressedProprietary
879B16JBIG2Lossless, lossyTIFF-FX Extension Set 1.0Abandoned IETF draft from 2001
884716LERCLossyESRI LERC
mode=cs1url=https://helpx.adobe.com/content/dam/help/en/photoshop/pdf/DNG_Spec_1_7_1_0.pdf#page=17page=17–18title=Digital Negative (DNG) Specificationdate=September 2023version=1.7.1.0publisher=Adobe Incsection=Semantic Masks}}Lossy non-YCbCr JPEGLossyDNG 1.4.0.0LinearRaw}} colorspace; explicitly indicates baseline DCT JPEG compression as opposed to "lossless Huffman JPEG".
C35016ZSTDLosslessLibTIFF
C35116WebPLossless, lossyLibTIFF
CD4216JPEG XLLossless, lossyDNG 1.7.0.0

References

References

  1. . (). ["What are TIFF files and how do you open them?"](https://www.adobe.com/creativecloud/file-types/image/raster/tiff-file.html). *Adobe, Inc.*.
  2. . (). ["PNG vs. TIFF: Which is better?"](https://www.adobe.com/creativecloud/file-types/image/comparison/tiff-vs-png.html). *Adobe, Inc.*.
  3. (April 1996). "Encyclopedia of Graphics File Formats". [[O'Reilly Media.
  4. TIFF was chosen as the native format for raster graphics in the [[NeXTstep]] operating system; this TIFF support carried over into [[Mac OS X]].
  5. (16 May 2006). "Oral History of Paul Brainerd".
  6. (16 March 2025). "Stephen Carlsen's Obituary". Mountain View Funeral Home, Memorial Park and Crematory.
  7. (30 Jan 1990). "The ABCs of Mac graphics file formats". MacWEEK.
  8. "The TIFF/IT file format".
  9. (2005). "File Format for Internet Fax".
  10. [https://www.itu.int/itudoc/itu-t/com16/tiff-fx/docs/tiff6.pdf TIFF Revision 6.0 Final — June 3, 1992] {{Webarchive. link. (April 27, 2018 , Retrieved on 2024-03-29)
  11. Trauth, Martin H.. (2006). "MATLAB Recipes For Earth Sciences". Springer.
  12. [https://web.archive.org/web/20120111100404/http://partners.adobe.com/public/developer/en/tiff/TIFFphotoshop.pdf TIFF Specification Supplement 2], Retrieved 2022-06-29
  13. Nothing prevents someone defining a TIFF extension that would introduce some other kind of pixel geometry, or even house non-pixel-based graphics in a TIFF container, but so far there does not seem to have been any need for that. Hence TIFF images have a rectangular pixel geometry.
  14. "Adobe TIFF Resources page".
  15. (2014-01-08). "TIFF, Revision 6.0". [[Library of Congress]].
  16. David Beecher, author of dozens of image processing engines over the last 30 years. Any TIFF file can be viewed with a HEX editor to confirm this.
  17. Microsoft. "You cannot preview scanned TIFF file in Windows Picture and Fax Viewer".
  18. Microsoft. "You Cannot View TIFF Images Using Windows Picture and Fax Viewer".
  19. Microsoft. "Handling Microsoft Office Document Scanning TNEF and TIFFs in Linux".
  20. [https://web.archive.org/web/20060114005938/http://partners.adobe.com/public/developer/en/tiff/TIFFPM6.pdf TIFF Specification Supplement 1], Retrieved 2022-06-29
  21. "Baseline TIFF Tag Compression".
  22. "LibTIFF - TIFF 6.0 Specification Coverage".
  23. "JSTOR/Harvard Object Validation Environment - TIFF Compression Schemes".
  24. "JSTOR/Harvard Object Validation Environment - JHOVE TIFF-hul Module".
  25. "TIFF Fields".
  26. Library of Congress Collections. "Tags for TIFF and Related Specifications".
  27. "GIMP Documentation - Saving as TIFF".
  28. "IrfanView - History of changes".
  29. Commonly supported TIFF types can be displayed by image viewers such as [[Irfanview]]
  30. Succeed project. (August 2025). "Recommendations for metadata and data formats for online availability and long-term preservation".
  31. "LEADTOOLS TIFF SDK".
  32. "Draft-ietf-fax-tiff-fx-extension1-01".
  33. (September 2023). "Digital Negative (DNG) Specification". [[Adobe Inc]].
  34. (September 2023). "Digital Negative (DNG) Specification". [[Adobe Inc]].
  35. "Extending LibTiff library with support for the new format called BigTIFF".
  36. "The BigTIFF File Format". AWare Systems.
  37. (2024-04-15). "BigTIFF".
  38. Technical Standardization Committee on AV & IT Storage Systems and Equipment. (April 2002). "Exchangeable Image File Format for Digital Still Cameras". [[Japan Electronics and Information Technology Industries Association]].
  39. "TIFF tags".
  40. CIP4. (2008). "JDF Specification - Appendix H MimeType and MimeTypeVersion Attributes".
  41. "ISO 12639:2004 - Graphic technology - Prepress digital data exchange - Tag image file format for image technology (TIFF/IT)".
  42. ISO. (2002). "DRAFT INTERNATIONAL STANDARD ISO/DIS 12639 - Graphic technology — Prepress digital data exchange — Tag image file format for image technology (TIFF/IT) - Revision of first edition (ISO 12639:1998)".
  43. "Glossary of Printing Terms - TIFF/IT".
  44. (August 2025). "CIP3 application note".
  45. "Tiff/It Questions and Answers".
  46. "Introduction to PDF/X".
  47. "Tiff/It P1 Specifications".
  48. DDAP Association. (2003). "TIFF/IT Implementers".
  49. "Harlequin RIP - manual for a commercial TIFF/IT plugin".
  50. "A software manual with information about TIFF/IT".
  51. (October 2001). "DDAP Position Statement - TIFF/IT as a File Format for Delivery of Digital Advertising - October, 2001".
  52. (October 2001). "DDAP Position Statement - TIFF/IT as a File Format for Delivery of Digital Advertising - October, 2001".
  53. (1998). "DDAP, TIFF/IT-P1, PDF-X/1".
  54. "TIFF/IT-P1".
  55. DDAP Association. (2002). "TIFF/IT Private Tags".
  56. "Glossary of Printing Terms - TIFF/IT-P1".
  57. "ISO 12639:2004".
Wikipedia Source

This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.

Want to explore this topic further?

Ask Mako anything about TIFF — get instant answers, deeper analysis, and related topics.

Research with Mako

Free with your Surf account

Content sourced from Wikipedia, available under CC BY-SA 4.0.

This content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.

Report