IFF
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) |
(→Resources) |
||
Line 30: | Line 30: | ||
==Resources== | ==Resources== | ||
* [http://www.martinreddy.net/gfx/2d/IFF.txt The original EA spec] ([http://www.textfiles.com/programming/FORMATS/ea.iff Another copy at textfiles.com]) | * [http://www.martinreddy.net/gfx/2d/IFF.txt The original EA spec] ([http://www.textfiles.com/programming/FORMATS/ea.iff Another copy at textfiles.com]) | ||
− | * [http://wiki.amigaos.net/ | + | * [http://wiki.amigaos.net/wiki/IFF_FORM_and_Chunk_Registry IFF chunk registry], defining all known chunks |
− | * [http://wiki.amigaos.net/ | + | * [http://wiki.amigaos.net/wiki/IFF_Source_Code IFF Source Code] |
* [http://rewiki.regengedanken.de/wiki/.IFF REWiki: .IFF] | * [http://rewiki.regengedanken.de/wiki/.IFF REWiki: .IFF] | ||
* [http://www.fileformat.info/format/iff/egff.htm IFF File Format Summary] | * [http://www.fileformat.info/format/iff/egff.htm IFF File Format Summary] | ||
* [http://www.textfiles.com/programming/FORMATS/admusfmt.pro 1994 "advanced music formats" discussion that covers some IFF formats] | * [http://www.textfiles.com/programming/FORMATS/admusfmt.pro 1994 "advanced music formats" discussion that covers some IFF formats] | ||
+ | * [http://www.ibm.com/developerworks/library/pa-spec16/ IBM developerWorks: The Interchange File Format] | ||
[[Category:IFF based file formats]] | [[Category:IFF based file formats]] |
Revision as of 01:33, 27 January 2015
- This article is about the generic IFF metaformat. For the IFF image format, see ILBM.
IFF (Interchange File Format) is a file format introduced by Electronic Arts on the Commodore Amiga computer. Its structure is similar to RIFF or PNG, using various self-contained chunks to contain different data. Multi-byte numeric values are big-endian.
Although IFF is most commonly used as an image format (using the file extension .iff
), it can actually hold a lot of different data types. Some examples of IFF files are
- ILBM Interleaved bitmap image
- XMI XMidi music files
- 8SVX audio sample data
- SX2 Propellerhead Reason NN-XT patches
- ANIM
Some other formats are largely or heavily influenced by the IFF standard, but are not compatible. These include, for example:
- Erlang BEAM compiled modules[1][2]: Uses 4 byte alignment instead of 2 byte, and the root chunk has a different ID (
FOR1
instead ofFORM
) - Microsoft's RIFF and RIFX formats are based on IFF (RIFF uses little-endian byte order instead, and the root chunk is called
RIFF
instead ofFORM
) - Apple's AIFF and AIFC formats are similar to IFF/RIFF as well
- Maya IFF
Identification
IFF files begin with the ASCII characters "FORM
".