TIFF (.tiff, .tif)
Background & Context
-
- Registered MIME type: image/tiff
- TIFF raster image format.
- Commonly used in image manipulation applications, page layout applications, scanners and other imaging devices, and for the archiving of images.
- Suitable for high-color-depth images.
- TIFF is an acronym for Tagged Image File Format.
- Binary format.
- Supports multiple color resolutions, color encodings, color palettes, and compression methods.
- Supports floating-point images with 32 and 64 bits per channel.
- Can store multiple images.
- Supports alpha channels.
- Introduced in 1986 by Aldus.
Import & Export
- Import["file.tiff"] imports a TIFF file, returning a single Image object or a list of images.
- Import["file.tiff",elem] imports the specified element from a TIFF file.
- The import format can be specified with Import["file","TIFF"] or Import["file",{"TIFF",elem,…}].
- Export["file.tiff",expr] exports an image, graphics, or any other expression as an image to a TIFF file.
- Export["file.tiff",{expr1,expr2,…}] exports a list of expressions as a multi-image TIFF file.
- Export["file.tiff",Manipulate[…]] exports a list of frames from an animated demonstration of a Manipulate object.
- Image objects are by default exported at their full raster size. Graphics and other arbitrary expressions are exported using the same raster size as their displayed form.
- See the following reference pages for full general information:
-
Import, Export import from or export to a file CloudImport, CloudExport import from or export to a cloud object ImportString, ExportString import from or export to a string ImportByteArray, ExportByteArray import from or export to a byte array
Import Elements
- General Import elements:
-
"Elements" list of elements and options available in this file "Summary" summary of the file "Rules" list of rules for all available elements - Data representation elements:
-
"ColorMap" color reduction palette "Data" array of pixel values "Graphics" the first image in the file, given as graphics "Image" first image in the file, represented as an Image object "RawData" array of color map indices {"Thumbnail",size} thumbnail of the first image (default size = Small) - Data representation elements for multi-image TIFF files:
-
"Animation" multi-image TIFF represented as an animation object "Image3D" images in the file, represented as an Image3D object {"GraphicsList",frames} images as a list of graphics (default frames=All) {"ImageList",frames} a list of images (default frames=All) {"ThumbnailList",frames,size} a list of thumbnails (default frames=All, size=Small) - Import by default uses "Image" for single-frame TIFF files and "ImageList" for multi-frame TIFF files.
- Import of a multi-image TIFF with element "Graphics" or "Image" gives the first image.
- Export by default generates a multi-image TIFF if the expression supplied is a list of Graphics or Image objects.
- Export with element "Graphics" or "Image" always generates a single-image TIFF.
- Advanced Import elements:
-
"BitDepth" bits used to represent each color channel in the file "CameraTopOrientation" - orientation of the camera when the picture was taken
"Channels" - the number of color channels used in the file
"ColorProfileData" embedded color profile, given as a ColorProfileData object "ColorSpace" color encoding used in the file "FlashUsed" - whether the flash was fired
"GeoPosition" - latitude and longitude represented as GeoPosition object
"GPSDateTime" - image creation date and time registered by GPS
"ImageCount" number of images in the file "ImageEncoding" how images are compressed in the file "ImageResolution" image resolution specified in the file "RasterSize" raster dimensions "Summary" - summary of the file
"SummarySlideView" slide view summary of all frames - Metadata elements:
-
"Exif" formatted Exif (Exchange image file format) "IPTC" formatted IPTC (International Press Telecommunications Council) "XMP" formatted XMP (Extensible metadata platform) "MetaInformation" combination of all formatted metadata present in the file - Raw metadata, as stored in the file, can be imported using "RawExif", "RawXMP", and "RawIPTC" elements, returned as an association.
- All Exif and IPTC tags can be imported individually. Common tags include:
-
"ApertureValue" lens aperture "DateTime" image creation date and time "ExposureTime" exposure time, given in seconds "FNumber" F number "FocalLength" actual focal length of the lens, given in millimeters "Make" manufacturer of the recording equipment "Model" model name or model number of the equipment "Software" name and version of the software or firmware of the camera or image input device used to generate the image - For multi-image TIFF files, the above data representation and metadata elements are taken to be lists of the respective expressions.
Options
- Import and Export options:
-
ImageResolution Automatic resolution used for rendering the graphics IncludeMetaInformation All metadata types to import and export "ImageTopOrientation" Automatic orientation of the image as stored in the file RasterSize Automatic dimensions of the image - Import option:
-
"TakeRows" {1,-1} rows to import - Export options:
-
ByteOrdering -1 ordering of bytes in the file "BitDepth" Automatic bit depth per channel used to store image data "ColorMapLength" Automatic number of colors to use for quantization "ColorSeparation" False whether to store color channels in separate planes ColorSpace Automatic color encoding to be used in the file CompressionLevel Automatic compression level, given as a number between 0 and 1 Dithering "FloydSteinberg" dithering algorithm used for generating the color-reduction table "DifferencingPredictor" False whether to use horizontal differencing when using LZW or ZIP compression "ImageEncoding" "ZIP" how images are compressed in the file "QuantizationMethod" Automatic a method to use for quantization - Export["file.tiff",expr] creates a TIFF image with the same image size as the displayed form of expr.
- Supported "ColorSpace" settings are: "Grayscale", "RGB", "CMYK", and "LAB".
- Supported "BitDepth" settings are: Automatic, 1, 8, 16, 32, and 64.
- By default, "Bit" images are exported to 1-bit, "Byte" images are exported to 8-bit, and other types are exported to 16-bit TIFF files.
- The following settings for "ImageEncoding" are supported:
-
None no compression "JPEG" lossy JPEG compression "LZW" lossless LZW compression "PackBits" PackBits run-length encoding method "ZIP" lossless ZIP image data compression - Detailed properties and settings for exporting a Manipulate:
-
"ControlAppearance" Automatic how Manipulate control elements are rendered in the exported file - The following settings can be given for "ControlAppearance":
-
Automatic captures user controls exactly as seen in the notebook interface, using the style elements of the local computer system "Generic" renders graphical controls in a generic style None excludes control elements when exporting an animation
Examples
open allclose allBasic Examples (5)
This imports a TIFF example file, rendering it as an Image:
Scope (8)
Show all elements available in the file:
Export a real-valued RGB image:
Create a TIFF file from data representation elements:
Create a multi-frame TIFF file from a list of RGB images:
Create a multi-frame TIFF from a Manipulate:
Import Elements (36)
Available Elements (4)
Data Representation (10)
Metadata (22)
"ColorProfileData" (1)
Get the embedded color profile, given as a ColorProfileData object:
The color profile is stored in the ColorSpace option of the imported image:
"ColorSpace" (1)
Get the color encoding used on export:
Use ImageColorSpace to get the color space of an imported image:
"Exif" (3)
"RasterSize" (1)
Get the dimensions of the image stored in the file:
Using ImageDimensions on an imported image gives the same result:
"RawExif" (1)
Import Options (7)
ImageResolution (1)
"ImageTopOrientation" (1)
IncludeMetaInformation (3)
RasterSize (1)
Export Options (12)
"BitDepth" (2)
ColorSpace (1)
CompressionLevel (1)
"ControlAppearance" (1)
Control the appearance of a multi-frame TIFF from a Manipulate:
"ImageTopOrientation" (1)
By default, the upright image is exported using "ImageTopOrientation"->Top: