File Formats Wiki
Advertisement
Icon file
Blank

Filename extension .ico
Internet media type image/vnd.microsoft.icon
Uniform type identifier com.microsoft.ico
Developed by Microsoft +
Type graphics file format
File formats category - v  e   edit
Cursor file
Blank

Filename extension .cur
Developed by Microsoft +
Type graphics file format
File formats category - v  e   edit
Smallwikipedialogo.png Wikipedia has an article related to:

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 color depths.

The official IANA registered Internet media 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 an Internet media type setting for .ico files, and may send their default Internet media type, which might be text/html or text/plain.

Icon sizes, color 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 color depth. Commonly an icon file would contain both 16x16 and 32x32 (for the start menu and folder "large icons" view) and 16x16 (for window title bars, submenus of the start menu and folder small icons, list and details views).

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 color depth icon images, with transparency taken from the alpha channel of the image, allowing semitransparent areas like shadows and anti-aliased 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 96×96 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 added 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.

ICO files can be edited or exported with a number of graphics programs.

File structure[]

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

Header[]

Offset Size Description
0 (0) 2 Reserved. Should always be 0.
2 (2) 2 Type: 1 is for icon, 2 is for cursor.
4 (4) 2 Number of images in the file.

Directory[]

Offset Size Description
0 (0) 1 Width, should be 0 if 256 pixels
1 (1) 1 Height, should be 0 if 256 pixels
2 (2) 1 Color count, should be 0 if more than 256 colors
3 (3) 1 Reserved, should be 0[1]
4 (4) 2 Color planes when in .ICO format, should be 0 or 1[2], or the X hotspot when in .CUR format
6 (6) 2 Bits per pixel when in .ICO format[3], or the Y hotspot when in .CUR format
8 (8) 4 Size of the bitmap data in bytes.
12 (C) 4 Offset in the file.

Recommended icon sizes for Windows Vista compatibility[]

The full set of standard icon sizes which should be provided for full Windows Vista compatibility:

  1. 256×256, 32-bit color, PNG compressed
  2. 48×48, 32-bit color, uncompressed
  3. 48×48, 8-bit color, uncompressed
  4. 48×48, 4-bit color, uncompressed
  5. 32×32, 32-bit color, uncompressed
  6. 32×32, 8-bit color, uncompressed
  7. 32×32, 4-bit color, uncompressed
  8. 16×16, 32-bit color, uncompressed
  9. 16×16, 8-bit color, uncompressed
  10. 16×16, 4-bit color, uncompressed

References[]

  1. Note: 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.
  2. Note: Setting the color planes to 0 or 1 is treated equivalently by the operating system, but if the color planes are set higher than 1, this value should be multiplied by the bits per pixel to determine the final color depth of the image. It is unknown if the various Windows operating system versions are resilient to different color plane values.
  3. Note: 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.

See also[]

  • Windows bitmap, a very similar file format
  • Apple Icon Image, the icon format used in Mac OS X.
  • Favicon, an icon format used for websites
  • Icon editor

External links[]

This page uses CC-BY-SA content from Wikipedia (authors). Smallwikipedialogo.png
Advertisement