Convert TIFF to ICO

Converting a TIFF to ICO turns print artwork into an icon file: the picture is reduced to icon sizes — 16, 32 and 48 pixels in one container by default — and each is stored as a PNG, so transparency survives. What does not survive is everything a print TIFF was carrying: bit depth, CMYK colour, and any pages after the first.

  • Where it runs In your browser. The file is never uploaded.
  • Lossy Some detail is traded for size. ICO cannot hold everything a TIFF can.
  • File size limit Up to 100 MB per file, free, without an account.
  • Worth knowing Only the first page is converted; the rest of a multi-page TIFF is not carried over.

Up to 100 files at once. Mixed formats are fine.

What TIFF to ICO actually does

TIFF 601 KBICO 139 KB 4.3× smaller

A photographic scene — smooth gradients, soft edges, grain. This is the case ICO is designed for or against, and the figures show which. Both images are drawn in code and encoded by the same converter that runs on this page, so the sizes are this site's own output.

TIFF 601 KBICO 7 KB 86.0× smaller

A transparent background and a gradient across the shape. ICO either keeps both, keeps one, or fills the transparency with a solid colour — which is the difference that catches people out. Both images are drawn in code and encoded by the same converter that runs on this page, so the sizes are this site's own output.

TIFF 601 KBICO 3 KB 234.0× smaller

Flat colour and hard edges, as in an interface, a chart or a logo. Very different behaviour from the photograph above, and the reason the answer is "it depends what is in the file". Both images are drawn in code and encoded by the same converter that runs on this page, so the sizes are this site's own output.

A print TIFF is the wrong shape for an icon, and croppable

The gap between the two ends of this conversion is larger than on any other icon page. A logo delivered for print is typically 300 dpi and several thousand pixels across, sitting on a generous margin, often with a tagline set underneath it. An icon is at most 256 pixels and is usually seen at 16 or 32 — a favicon in a browser tab, a shortcut on a desktop, an entry in a taskbar.

Scaling handles the pixel count and cannot handle the composition. A mark that reads beautifully on a letterhead becomes a grey smudge at 32 pixels if it includes a tagline, a thin rule or an outlined typeface. Crop the TIFF to the symbol alone before converting — drop the wordmark, drop the margin, drop anything thinner than about a fortieth of the width — and the result will be a recognisable icon rather than a faithful miniature of something unreadable. That five-minute crop is worth more than every option on this page.

The ICO is capped at 256 pixels on its longest edge

Whatever arrives, the image is scaled so its longest edge is no more than 256 pixels before it is written. That is the format’s own ceiling rather than a policy: the ICO directory stores each image’s width and height in a single byte, and 256 is recorded as zero because 256 does not fit in a byte. Every Windows since Vista reads that convention correctly.

Each size in the file is then made from that 256-pixel image in one filtered pass onto a square canvas, so a 3,000-pixel print file does not come out aliased and a non-square mark is centred with transparent space rather than stretched. What it does come out is simplified: features narrower than roughly a hundredth of the image width average away entirely. If the icon has to be sharp at 32 pixels specifically, the better route is still to prepare a 32-pixel version deliberately in an editor, because a downscale from 3,000 pixels and a purpose-drawn 32-pixel icon are visibly different things.

One page in, several icon sizes out

TIFF holds several images per file and so does ICO — that is what the format is for, since a proper icon file carries 16, 32, 48 and 256-pixel versions of the same artwork so that each context can pick the one it wants. The comparison table on this page reports both facts correctly about the formats, and this conversion honours exactly one of them.

The TIFF reader takes page one and stops, so a multi-page file quietly loses everything after it — check which page the logo is on before converting a brand pack that also contains a mono version and a reversed one. The ICO writer, on the other hand, emits the whole set: one directory entry per size, three by default at 48, 32 and 16, each its own PNG. So the asymmetry runs the way you want. A print file that is only ever going to give up one image gives it up into a container that then carries it at every size a browser or a taskbar will ask for.

Transparency survives because the ICO contains a PNG

An ICO can hold either raw bitmaps or PNGs, and this one holds a PNG per size. That is the modern convention, it produces a file a fraction of the size of the raw-bitmap alternative, and it brings a real 8-bit alpha channel with it — so a logo cut out of its background stays cut out, with soft anti-aliased edges rather than a jagged one-bit mask.

This is the strongest reason to convert a logo rather than a photograph into an icon. A favicon sits on whatever colour the browser’s tab strip happens to be, and it changes between light and dark themes; a mark on an opaque white square looks like a mistake in dark mode. If the TIFF does not have a transparent background but the artwork is on flat white, removing that background before converting is worth doing.

CMYK artwork shifts colour on the way into the icon

A print TIFF is frequently CMYK with an ICC profile attached, and that combination is what makes it printable. The reader here converts CMYK to screen colour with a fixed formula rather than through the profile, so the icon is recognisably the brand and not exactly it — usually a little flat where the profile would have lifted the deep tones, and slightly off on saturated corporate reds and blues.

For a 32-pixel tab icon nobody will notice. For a brand where the colour is the asset, it is worth doing the conversion properly: open the TIFF in Photoshop, Affinity or GIMP, convert to sRGB with the correct profile, export an RGB copy, and bring that here. It is also worth doing if the same artwork is going to be used elsewhere on the site, because a favicon that does not match the header logo is a visible inconsistency.

What else a TIFF loses when it becomes an ICO

Sixteen bits per channel are reduced to eight by keeping the high byte, which is invisible at icon size. Layers are flattened into the composite. EXIF, XMP, IPTC and any ICC profile are dropped — every image conversion here decodes to raw pixels and re-encodes, so that happens on its own and no setting on the page prevents it.

The size drops accordingly and steeply. This site’s own 480 by 320 samples are 615,400 bytes as TIFF, and an icon derived from print artwork lands in single-digit kilobytes because it is a few hundred pixels of PNG behind a directory of a few dozen bytes. The default three-size set is normally the smaller file as well as the better icon — three small PNGs of a flat mark measured 1,062 bytes against 2,229 for one 256-pixel entry. Either way the file has no performance implications at all, which is one less thing on a launch checklist.

Where the ICO goes once you have it

For a website, put it at the root as /favicon.ico. Browsers request that path whether or not anything in the markup points at it, and a 404 for it is one of the most common lines in a server log. Adding a link element in the head as well does no harm and makes the intention explicit.

For a Windows shortcut, right-click the shortcut, choose Properties, then Change Icon, and point it at the file. For an application, the build tool usually wants a multi-size ICO and will say so — choose "All common sizes" and it gets one, 256 down to 16, from this page rather than from a separate icon tool. Modern browsers will also take a PNG or an SVG as a favicon through a link element, which is worth knowing: the ICO is required only for the bare /favicon.ico request and for Windows itself.

When a TIFF should become something other than an icon

If the mark also exists as vector — an SVG, an EPS, an AI file in the same brand pack — use that instead. Vector artwork is rendered rather than resampled on the way in, so the edges are antialiased once instead of twice, and it sidesteps the CMYK problem entirely because an SVG carries screen colour already. Digging through the handover folder for it is usually a better use of ten minutes than tuning anything here.

If the goal is not really an icon, the sibling pages are more likely to be right: TIFF to PNG for a logo that has to go into a document or a slide with its transparency intact, TIFF to WebP for one that has to go on a web page, and TIFF to SVG if the artwork needs to be traced back into shapes for signage or cutting. ICO is for the narrow set of places that genuinely require the container.

The conversion runs in the tab, on files nobody else sees

utif2 decodes the TIFF, the image is scaled and encoded as a PNG once per size, and a six-byte header plus sixteen bytes of directory per entry are written around them — all in your browser, with nothing uploaded. On this page that is worth stating plainly, because the file is nearly always a logo somebody owns and often one that has not been published yet.

The free limit is 100 MB per file, well beyond any print logo. Batches work if you have several marks to convert — drop a folder, take a ZIP — though most people on this page have exactly one file and one checklist item. The PNG encoder is shared with the rest of the site’s image pipeline, so the icon is compressed with oxipng on the way out rather than left at whatever the encoder first produced.

How to make an ICO from a TIFF logo

  1. Crop the TIFF to the symbol alone, without the wordmark or the margin.
  2. If the file is CMYK, convert it to sRGB in an editor that honours the profile first.
  3. Drop it here, download the ICO and put it at the root of the site as /favicon.ico.

TIFF against ICO: a print container against an icon container

TIFF compared with ICO
TIFFICO
Full nameTagged Image File FormatWindows Icon
File extension.tif, .tiff.ico
Media typeimage/tiffimage/x-icon
CompressionLossless — nothing is discardedLossless — nothing is discarded
First published19861985
Published byAdobeMicrosoft
SpecificationTIFF 6.0
LicensingPublished, not standardisedPublished, not standardised
Standing todayCurrentNiche
Bit depth328
Colour it can describeRGB, CMYK, greyscale, LabRGB, indexed palette
Largest image256 px per side
Opens in a browserSome browsersEvery browser
Considered insteadPNG, PDF, DNGPNG, SVG

What is lost

ICO holds one page. A multi-page TIFF converts a page at a time rather than in one file.

TIFF can hold CMYK; ICO is RGB. A file prepared for a printing press converts to screen colour, and the separations have to be made again in the print workflow.

TIFF carries up to 32 bits per channel and ICO stores 8. The extra precision is what survives heavy correction without banding, so the conversion is best made after the editing rather than before it.

What survives

Transparency survives. Both TIFF and ICO store an alpha channel, so a cut-out stays cut out and nothing is filled in behind it.

Opening the result

ICO opens in every current browser. TIFF has narrower browser support than that. If the file is going onto a web page or into a form, that is usually the whole reason for the conversion.

The usual programs do not overlap: TIFF opens in Adobe Photoshop, Affinity Photo and ImageMagick, ICO in GIMP and IcoFX — so whoever receives the result needs something from the second list.

What each format is for

The two are aimed at different work: TIFF at print, scanning and archiving, ICO at the web. That is worth weighing before converting, because the reason one exists is usually the reason the other is awkward.

TIFF is Adobe's format, published in 1986. It records 32 bits per channel.

ICO comes from Microsoft and dates from 1985. GIMP and IcoFX all read it.

TIFF to ICO: sizes, colour and transparency

Are my TIFF files uploaded anywhere?

No. This conversion runs entirely inside your browser, so the file never leaves your device. You can confirm it yourself: open the network tab of your browser's developer tools and convert something. You will see the page load, plus the analytics and advertising the site is paid for with — and nothing carrying your file. The engine behind this particular pair is jSquash, WebAssembly builds of the reference image codecs; your browser fetches it once and caches it.

What size icon does this produce?

The sizes you pick, none of them above 256 pixels. A print TIFF thousands of pixels wide is reduced a very long way, which is the right outcome — an icon is never displayed larger than that — but it means fine detail in the mark disappears rather than shrinks.

Can I get the classic 16, 32 and 48 pixel sizes in one file?

Yes, and that is the default. The "Icon sizes" control writes each size as its own image in one ICO, which is what a browser really wants for a favicon; "All common sizes" adds 64, 128 and 256 for a Windows application icon.

My brand colours look wrong. Why?

Almost certainly because the TIFF is CMYK. It is converted to screen colour with a fixed formula rather than through the ICC profile embedded in the file, so the result is close but shifted — usually flatter in the deep tones. Convert the TIFF to RGB in software that honours the profile first, then bring that here.

Does the transparent background survive?

Yes. The ICO written here wraps a PNG, which has a real alpha channel, so a logo with a cut-out background stays cut out and does not arrive on a white square.

The registry says both formats hold several pages. Do they?

Both formats do, and this conversion honours one of them. Only the first page of a multi-page TIFF is read, so everything after it is dropped; the ICO, on the other hand, is written with a directory entry per size. One page in, a set of icon sizes out.

Will my mark still be readable at 32 pixels?

Often not, and that is a design question rather than a conversion one. A wordmark with a tagline is illegible below about 64 pixels. Crop the TIFF down to the symbol alone before converting — it is the single most effective thing you can do on this page.

More about these formats

Where these figures come from

The claims this page makes about TIFF and ICO are checkable, and these are the documents that settle them.

  • TIFF, Revision 6.0

    Library of Congress, Sustainability of Digital Formats — TIFF’s tag structure and its many compression options