TIFF for Facsimile eXtended
image/tiff-fx
Released 1998
· by IETF (Internet Engineering Task Force)
The image/tiff-fx MIME type represents TIFF for Facsimile eXtended (TIFF-FX), a specialized profile of the Tagged Image File Format designed specifically for transmitting multi-page facsimile (fax) documents over the Internet. It defines specific profiles for black-and-white, grayscale, and color faxing, standardizing how fax data is encapsulated for email (Internet Fax) and IP network transmission.
Technical Specifications
.tiff.tif
CCITT Group 3/4JBIGJPEG
image/tiff
Magic Bytes & HTTP Headers
II*\x00 / MM\x00*
Browser Support Matrix
| Browser | Status | Min Version |
|---|---|---|
|
|
Not Supported | — |
|
|
Not Supported | — |
|
|
Not Supported | — |
|
|
Not Supported | — |
|
|
Not Supported | Legacy |
Advantages & Limitations
- Provides a universal, standardized format for transmitting multi-page documents over IP networks and email (Internet Fax)
- Supports highly efficient telecom-centric compression algorithms (MMR, JBIG) that produce very small files for text documents
- Maintains backwards compatibility with standard TIFF parsers
- Not supported natively by web browsers
- Requires complex parsing of TIFF IFD tags to differentiate a true TIFF-FX file from a standard TIFF file
- Usage is slowly declining as traditional faxing is replaced by secure PDF transmission and e-signature platforms
Developer Code Snippets
File Detection Steps
How to programmatically detect a image/tiff-fx
file by reading its raw bytes:
- 1 Check the first two bytes for TIFF endianness (49 49 or 4D 4D)
- 2 Verify the 42 identifier (2A 00 or 00 2A)
- 3 Parse the IFD (Image File Directory) tags to verify fax-specific parameters such as GlobalParametersIFD (Tag 400) or specific PhotometricInterpretation and Compression tags associated with Profiles S, F, J, C, L, or M
Software Support
ImageMagick
Conversion Tools
Share & Embed
[](https://freewebptojpg.com/mime/image/tiff-fx)
<iframe src="https://freewebptojpg.com/mime/image/tiff-fx/embed" width="100%" height="280" style="border:1px solid #cbd5e1;border-radius:8px;" title="TIFF-FX Specs"></iframe>
JSON API
All data on this page is available as a free, open JSON API. Use it in your project, documentation, or tooling.
GET https://freewebptojpg.com/mime/image/tiff-fx.json
Open JSON
Frequently Asked Questions
What is the difference between image/tiff and image/tiff-fx?
Structurally, a TIFF-FX file is a standard TIFF file. However, image/tiff-fx guarantees that the file adheres to strict Internet Fax profiles (Profiles S, F, J, C, L, or M) defined by the IETF. This ensures compatibility with VoIP fax gateways, fax machines, and enterprise fax servers.
What compression algorithms does TIFF-FX use?
Depending on the fax profile, TIFF-FX supports Modified Huffman (MH), Modified Read (MR), Modified Modified Read (MMR) for standard B&W faxes, JBIG for high-compression B&W or color, and JPEG for standard color faxes.
Can I open a TIFF-FX file in a standard image viewer?
Yes, in most cases. Because TIFF-FX is built on the standard TIFF 6.0 structure, robust image viewers and operating system previewers can usually open and display the pages, provided they support the specific compression algorithm (like MMR or CCITT Group 4) used inside the file.