ICO (icon image file format)
From Wikipedia, the free encyclopedia
ICO | |
---|---|
File name extension | .ico |
Internet media type |
|
Uniform Type Identifier | com.microsoft.ico |
Developed by | Microsoft |
Type of format | icon graphics file format |
CUR | |
---|---|
File name extension | .cur |
Developed by | Microsoft |
Type of format | cursor graphics file format |
The ICO file format is an image file format used for icons in Microsoft Windows. The CUR file format for cursors is almost identical, as the only differences are the identification byte and a specification of a hotspot in the header.
ICO files contain one or more small images at multiple sizes and colour depths.
The official IANA registered MIME type for ico files is image/vnd.microsoft.icon
. Before this was registered, image/x-icon
was the accepted option that complied with the rules of using x- for unregistered tokens. However, many others are seen, including image/ico
, image/icon
, text/ico
, and application/ico
. Many web servers do not come configured with a MIME type setting for .ico files, and may send their default MIME type, which might be text/html
or text/plain
.
Contents |
[edit] Icon sizes, colour depths, and transparency data
Originally 32×32 pixels square and using 16 colors, more recent versions of Microsoft Windows support icons at multiple sizes and color depths. Prior to Windows XP, icon images could be any size from 1×1 pixel up to 255×255 pixels (including non-square sizes), and 4-, 8-, 16-, or 24-bit colour depth. However, only 16×16 and 32×32 images at 4- and 8-bit color depths were shown in the graphical shell, so other icon formats were uncommon. Icon image data was always made up of two bitmaps: the AND bitmap and the XOR bitmap. The AND bitmap is 1 bit per pixel and is applied first to decide which areas of the image are affected by the background. The XOR bitmap is then applied using XOR. This allows for transparent areas in the image but also allows for inverting the background and other tricks.
Windows XP adds support for 32-bit colour depth icon images, with transparency taken from the alpha channel of the image, allowing semitransparent areas like shadows and antialiased edges. As the AND bitmap is no longer used, these icon images contain only XOR bitmap data. Windows XP also adds the ability to display icons at up to 72×72 pixel resolution in the graphical shell; however, Microsoft only recommended icon sizes up to 48×48 pixels, so larger icon sizes are uncommon.
Windows Vista adds support for 256×256 pixel icon images, and supports (but does not require) the compressed PNG format for that size. The PNG format encodes the image transparency data directly; it contains neither the XOR nor the AND bitmap data of the other icon image formats. It is recommended that all 256×256 icons should be stored in the ICO file in PNG format to reduce the overall size of the file. The Windows Vista graphical shell supports "zooming" the display in and out; as a result, more icon formats (including the larger, 256×256 format) are recommended.
[edit] Recommended icon sizes for Windows Vista compatibility
The full set of standard icon sizes which should be provided for full Windows Vista compatibility:
- 256×256, 32-bit color, PNG compressed
- 256×256, 8-bit color, PNG compressed
- 256×256, 4-bit color, PNG compressed
- 48×48, 32-bit color, uncompressed
- 48×48, 8-bit color, uncompressed
- 48×48, 4-bit color, uncompressed
- 32×32, 32-bit color, uncompressed
- 32×32, 8-bit color, uncompressed
- 32×32, 4-bit color, uncompressed
- 16×16, 32-bit color, uncompressed
- 16×16, 8-bit color, uncompressed
- 16×16, 4-bit color, uncompressed
[edit] Icon library
An icon library is a way to package Windows icons. It is typically a New Executable binary having .ICL extension with icon resources being the packaged icons.
[edit] File structure
Please note that all values are represented in little-endian (Intel standard) format
Icon Header | Stores general information about the ICO file. |
Directory[1..n] | Stores general information about every image in the file. |
Icon #1 | The actual "data" for the first image in old AND/XOR DIB format or newer PNG |
... | |
Icon #n | Data for the last icon image |
[edit] Header
Offset# | Size | Purpose |
---|---|---|
0 | 2 | reserved. should always be 0 |
2 | 2 | type. 1 for icon (.ICO), 2 for cursor (.CUR) file |
4 | 2 | count; number of images in the file |
[edit] Directory
Offset# | Size | Purpose |
---|---|---|
0 | 1 | width, should be 0 if 256 pixels |
1 | 1 | height, should be 0 if 256 pixels |
2 | 1 | colour count, should be 0 if more than 256 colours |
3 | 1 | reserved, should be 0[1] |
4 | 2 | colour planes when in .ICO format, should be 0 or 1[2], or the X hotspot when in .CUR format |
6 | 2 | bits per pixel when in .ICO format[3], or the Y hotspot when in .CUR format |
8 | 4 | size in bytes of the bitmap data |
12 | 4 | offset, bitmap data address in the file |
- ^ Although Microsoft's technical documentation states that this value must be zero, the icon encoder built into .NET (System.Drawing.Icon.Save) sets this value to 255. It appears that the operating system ignores this value altogether.
- ^ Setting the colour planes to 0 or 1 is treated equivalently by the operating system, but if the colour planes are set higher than 1, this value should be multiplied by the bits per pixel to determine the final colour depth of the image. It is unknown if the various Windows operating system versions are resilient to different colour plane values.
- ^ The bits per pixel might be set to zero, but can be inferred from the other data; specifically, if the bitmap is not PNG compressed, then the bits per pixel can be calculated based on the length of the bitmap data relative to the size of the image. If the bitmap is PNG compressed, the bits per pixel are stored within the PNG data. It is unknown if the various Windows operating system versions contain logic to infer the bit depth for all possibilities if this value is set to zero.
[edit] See also
- Windows bitmap, a very similar file format
- (Note that many of the external links in that article are relevant to ICO files as well).
- Apple Icon Image, the icon format used in Mac OS X.
- Favicon, an icon format used for websites
- Icon editor
[edit] External links
The external links in this article may not follow Wikipedia's content policies or guidelines. Please improve this article by removing excessive or inappropriate external links. |
- IANA registration information for image/vnd.microsoft.icon
- Explanation of the ICO implementation from Microsoft (Out of date. Does not include Vista additions.)
- Microsoft's Guide for creating icons
- "Complete Icon Format Explanation" by ALFONS HOOGERVORST: Technical details included. (Out of date. Does not include Windows XP or Vista additions.)
- Compare with Mac OS X Icons
- A code library used to manipulate icons. Also includes a detailed technical explanation of the icon format, including the Windows Vista additions.