GIF
(→Related formats) |
|||
Line 125: | Line 125: | ||
* [[LZW]] | * [[LZW]] | ||
* [[MAG (GIF archiver)]] | * [[MAG (GIF archiver)]] | ||
+ | * [[Title-Maker]] | ||
== Specifications == | == Specifications == |
Revision as of 17:15, 30 April 2022
Graphics Interchange Format (GIF) was introduced by the CompuServe online service in 1987, intended to provide a consistent and compact format for graphics to be downloaded on that service. Since the specifications were openly released, the format gained wide use in graphics software and on online services and bulletin board systems (BBSs), not just CompuServe; later it became a major Web graphic format. GIF's ability to have animation (unlike most still graphic formats) has caused it to gain some Internet notoriety and use in conjunction with "memes".
Contents |
Patents
In 1994, it became widely known that the format was encumbered by the use of the patent-protected LZW compression technology, for which its owner, Unisys, was demanding licencing terms and royalties for certain sorts of uses. This made GIF a less-than-free format, spurring a desire on the part of some people for an unencumbered format, which led to the creation of the PNG format. However, it took several years for PNG to get widespread support in software, and in the meantime the World Wide Web experienced meteoric growth with GIF still used as the primary graphics format (alongside JPEG), though eventually PNG did become widespread on the Web as well. The patent in question expired in the US in 2003, and in other countries in 2004, so it is no longer an issue.
Another attempt at a patent-free format to replace GIF, Jeff's Image Format (JIF), never caught on.
Pronunciation
There is much debate over whether to pronounce "GIF" with a hard or a soft G. The creators of the format at CompuServe pronounced GIF as "jif" with a soft "G" /ˈdʒɪf/ as in "gin". Steve Wilhite, the engineering lead at CompuServe, said that the intended pronunciation deliberately echoes the American peanut butter brand, Jif, and CompuServe employees would often say "Choosy developers choose GIF", spoofing this brand's television commercials.[1] In addition, a sample GIF that was bundled with software released by CompuServe in 1989 contains metadata that includes the following line: "Oh, incidentally, it's pronounced 'JIF'". The original image and metadata can be viewed on a Unix-like operating system with the following command:
$ curl http://www.olsenhome.com/gif/BOB_89A.GIF | strings | grep JIF % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 37062 100 37062 0 0 158k 0 --:--:-- --:--:-- --:--:-- 196k |s,Oh, incidentally, it'spronounced "JIF"
Both pronunciations are acceptable to the Oxford American Dictionaries, which named it the word of the year[2] in 2012, in its supposed usage as a verb (which they don't seem to actually use in a sentence anywhere in their announcement).
Some hard-G proponents say that the hard "g" is proper due to it standing for "graphics", which has a hard "g", but others cite the normal English pattern of pronouncing "g" soft when followed by an "i" (though, like most English spelling and pronunciation rules, it has exceptions like "gift").
In 2013, Wilhite again reaffirmed the soft-G pronunciation[3], but there are some that still refuse to accept it[4].
Animated GIF
Unlike most other graphic formats, GIF supports multiple-frame animated graphics in addition to single-image graphics. These animated GIFs are often used on web pages, sometimes for good reasons, sometimes as a poor man's video format, and all too often (especially during the early wave of Web popularity) to animate clip art and other images that would be better left motionless. In the 2010s, the use of animated GIFs for spreading Internet memes had a sudden and intense burst of popularity, and could sometimes be used in a very artistic manner.
The GIF features used for animation seem to have been intended for slideshows, and not for the type of animation they came to be used for. In fact, the specification clearly states that "[GIF] is not intended as a platform for animation." The only missing element – a loop count – was supplied by Netscape's looping extension (see below).
In the popular vernacular these days, "GIF" seems synonymous with "animated GIF", even though the format has a long history of use in static (non-animated) graphics. Much (though not all) use of static GIFs has shifted to PNG and other formats, leaving GIF in the niche of animated graphics.
In response to the popularity of animated GIFs, as well as the fact that this is actually not a very efficient format for storage and transmission of animations (each frame must be included as a complete image, without the economies of compression used in animation formats that store only the changes between one frame and the next), some social-networking and image-hosting services have begun converting animated GIFs uploaded by users to other formats for display. For instance, Imgur uses its own GIFV format, which is actually an MP4 video encapsulated as an element in an HTML 5 document, which is served with a .gifv extension. The result is that popular use of the term "GIF" now often refers to things that are not actually in that format; it seems to have taken on the meaning of "brief, small, silent animated sequence usually found on web pages or in social media feeds", without regard to their actual file format, so you have the peculiar situation where a static graphic in GIF format is not a "GIF" but a short, silent MP4 video is one. Language evolution is peculiar.
A GIF can, apparently, also be a deadly weapon.
Versions
Version 87a
The original version, released 1987-06-15. As a reference point, it supports:
- Multiple images in a single file
- Interlaced images
- Background colors
- Extensions, but each extension would have to be approved by CompuServe in order to avoid conflicts
Version 89a
Released 1990-07-31. Adds support for:
- Binary transparency
- Animation, though there is no way to indicate whether the animation should loop
- Application extensions that don't require central coordination
- Comment extensions
- Plain Text extensions (an obsolete feature)
Other versions
There are no other official GIF version numbers.
Jeff's Image Format is a GIF-like format identified by JIF99a. The file command's database suggests that GIF-like formats identified by GIF94z ("ZIF") and FGF95a ("FGF") were experimented with.
Color format
GIF images are always paletted. The number of colors in a palette can be any power of 2 from 2 to 256.
If a GIF file contains multiple images, each may have its own palette. This makes it possible for animated GIFs to construct frames that exceed the usual limit of 256 colors[5]. This technique is inefficient, and may result in very large files.
Format details
A GIF file has a header (consisting of a signature, a screen descriptor, and optionally a global color table), followed by a sequence of tagged blocks of various types.
Block type 0x21 is an extension. Each extension has a byte indicating its type. GIF version 89a defines extension type 0xff to be an application extension, which can be used to store arbitrary data.
An application extension's specific type is given by an application identifier consisting of exactly 8 ASCII characters, plus a three-byte "authentication code" to reduce the chance of a conflict. In effect, this means it has an 11-byte identifier.
Known application extensions
Type | Description |
---|---|
"NETSCAPE" 0x32 0x2e 0x30 ("NETSCAPE2.0")
|
If the first byte of application data has value 0x01, this is a looping extension used in animated GIFs. It indicates the number of times to repeat the animation.
If the first byte is not 0x01, the extension is probably of no interest, but apparently at least one such extension was defined (0x02 = Netscape Buffering Extension[6]). |
"ANIMEXTS" 0x31 0x2e 0x30 ("ANIMEXTS1.0")
|
Same as "NETSCAPE2.0" looping extension. |
"ICCRGBG1" 0x30 0x31 0x32 ("ICCRGBG1012")
|
Stores an ICC profile. |
"XMP Data" 0x58 0x4d 0x50 ("XMP DataXMP")
|
Stores XMP metadata. |
"ImageMagick" , "MGK8BIM0000" , "MGKIPTC0000"
|
Used by ImageMagick. |
"fractint" ?? ?? ??
|
Used by the DOS program Fractint to save additional data (fractal parameters). The only documentation about this may be the source code[7]. See also FRA. |
"MathType" ?? ?? ??
|
Used by MathType.[8] |
MIDICTRL , MIDISONG , PCM-CTRL , PCM-FRMT , PCM-DATA
|
MMGIF Multimedia Extensions.[9] |
"GIFLITE "
|
GIFLITE[1] header |
Identification
GIF files begin with ASCII characters "GIF87a
" (version 87a), or "GIF89a
" (version 89a).
Related formats
- CompuServe RLE - predecessor
- FRA (Fractint)
- GIFBLAST
- GIFEXE
- Gifpress
- GIFV
- Jeff's Image Format
- LZW
- MAG (GIF archiver)
- Title-Maker
Specifications
- GIF87a
- GIF89a
- Netscape Looping Application Extension
- GIF Application Extension: NETSCAPE2.0 (alternate link from archive.org)
Sample files
- GifCities: GeoCities animated GIF archive
- http://whatis.rest7.com/how-to-open-gif-file
- https://telparia.com/fileFormatSamples/image/gif/
Metaformat files
- Synalysis grammar file (for Hexinator / Synalize It!; more details)
Software
Support for GIF is ubiquitous. The software listed here has been arbitrarily selected.
- GIFLIB
- Netpbm: ppmtogif, pamtogif, giftopnm
- Animated GIF converter/player for Apple II series (Video of it in action)
- Microsoft GIF Animator: small software program created by Microsoft in 1996 for making animated GIFs. Still works in Windows 8.
- JavaScript GIF encoding library
- screentogif (creates animated GIFs from screen activity)
- Bad Peggy: scans images for problems
- Apple II GIF viewer (Documentation)
- XnView
- Tom's Editor
- Online animated GIF maker
- CompuShow 2000! v2.04a - DOS program, descendant of one of the first GIF viewers
File conversions
External links
- Wikipedia:Graphics Interchange Format
- What's in a GIF
- Gifology: Understanding GIF Files & GIF Animation
- All About GIF89a
- Archive format info, including GIF
- GIF File Format Summary, from the Encyclopedia of Graphics File Formats
- Inside the GIF file format
- GIF is Oxford Dictionary Word Of 2012
- An honor for the creator of the GIF
- This web comic, part of a time-travel storyline, has a schoolgirl sleuth likening a time-looped version of 1960 at the other end of a wormhole to an animated GIF. (Not too much info about file formats here, but a neat comic!)
- World War G (comic)
- The Story of GIF (video)
- Python script to generate GIFs from Star Wars based on input dialogue line
- Exhibiting .gifs: An Interview with curator Jason Eppink
- Animated GIF Minimum Frame Delay Browser Compatibility Study
- ‘JIF’ Is the Format. ‘GIF’ Is the Culture
- How to post GIFs on Twitter
- What Twitter Isn’t Telling You About GIFs
- The WHATWG wiki GIF page has a good summary, and includes direct links to the implementation source code of a few browsers.
- An Algorithm to Extract Looping GIFs From Videos
- Library of Congress Digital Preservation page on GIF
- High quality GIF with FFmpeg
- Are GIFs fine art? Ello and the Boulder Museum of Contemporary Art think so
References
- ↑ http://www.olsenhome.com/gif/ GIF Pronunciation Page
- ↑ GIF (as a verb) is dictionary’s word of the year
- ↑ Even GIF Creator Can't Settle The Debate On The Pronunciation Of 'GIF'
- ↑ http://gizmodo.com/the-creator-of-the-gif-says-its-pronounced-jif-he-is-509179289 Creator of GIF is wrong
- ↑ True-Color GIF Example
- ↑ Netscape Buffering Application Extension
- ↑ Fractint source code: encoder.c
- ↑ MathType 5 SDK: Extracting Baseline Info from a GIF File
- ↑ MMGIF website, extensions spec.