QuickTime Image Format
image/x-quicktime
Released 1991
· by Apple Computer, Inc.
The image/x-quicktime MIME type represents the QuickTime Image Format (QTIF), a legacy image format developed by Apple Computer in the early 1990s. Built upon the same atom-based container structure as QuickTime movies (.mov), a QTIF file essentially acts as a single-frame QuickTime video. Instead of defining its own pixel compression, it leverages Apple's Image Compression Manager (ICM), meaning a QTIF file can theoretically contain image data compressed with any codec installed on the host system's QuickTime framework (such as JPEG, SMC, Cinepak, or Apple Video). Because it is entirely dependent on the now-deprecated QuickTime architecture, the format is completely obsolete.
Technical Specifications
.qtif.qti.qif
QuickTime Image Compression Manager (ICM) Codecs
image/qtifimage/x-macpaint
Magic Bytes & HTTP Headers
idsc
Browser Support Matrix
| Browser | Status | Min Version |
|---|---|---|
|
|
Not Supported | — |
|
|
Not Supported | — |
|
|
Not Supported | — |
|
|
Not Supported | — |
|
|
Not Supported | Legacy |
Advantages & Limitations
- Extremely flexible architecture allowing it to encapsulate virtually any image compression algorithm available on the host machine
- Supported 32-bit images with alpha channels (transparency) long before PNG became an established standard
- Fundamentally tied to Apple's deprecated QuickTime architecture, rendering the files almost entirely unreadable on modern systems without specialized legacy software or FFmpeg
- The 'wrapper' nature of the format means that even if a parser can read the QTIF container, it may fail to render the image if it lacks the specific proprietary codec (like Apple SMC) used to compress the pixel data
- Zero native support in modern web browsers
Developer Code Snippets
File Detection Steps
How to programmatically detect a image/x-quicktime
file by reading its raw bytes:
- 1 Like QuickTime video files, QTIF files are made up of hierarchical data blocks called 'atoms' or 'boxes'.
- 2 A typical QTIF file begins directly with an Image Description atom. The first 4 bytes indicate the total size of the atom as a 32-bit big-endian integer, and the next 4 bytes contain the ASCII type string 'idsc' (Hex: 69 64 73 63).
- 3 This is usually followed by an Image Data atom, identifiable by the ASCII string 'idat' (Hex: 69 64 61 74).
Software Support
Conversion Tools
Share & Embed
[](https://freewebptojpg.com/mime/image/qtif)
<iframe src="https://freewebptojpg.com/mime/image/qtif/embed" width="100%" height="280" style="border:1px solid #cbd5e1;border-radius:8px;" title="QTIF 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/qtif.json
Open JSON
Frequently Asked Questions
What is a QTIF file?
A QTIF (QuickTime Image Format) file is a legacy Apple graphics format. It is essentially a QuickTime movie container that holds a single still image, compressed using whichever QuickTime codecs were available on the system at the time of creation.
How do I open a QTIF file?
Modern operating systems and web browsers do not support QTIF natively, as Apple deprecated the QuickTime framework. To open them, you must use legacy software like QuickTime Player 7, or third-party media viewers that have reverse-engineered the format, such as XnView, GraphicConverter, or VLC (via FFmpeg).
Is QTIF the same as a QuickTime video (.mov)?
Structurally, they are very similar, utilizing the same 'atom' (or box) container architecture. However, a .mov file is designed for time-based media with multiple synchronized tracks, whereas a .qtif file typically just contains an 'idsc' (Image Description) and 'idat' (Image Data) atom representing a single still frame.