Other than the fact that PNG is a more common image format, is there any technical reason to favor favicon.png vs. favicon.ico?

I'm supporting modern browsers which all support PNG favorite icons.

link|improve this question

feedback

8 Answers

up vote 51 down vote accepted

png allows you to use alpha-channel transparency, which can look nicer on browsers that display the icon on various backgrounds (such as colored/gray tabs versus a white address bar) - especially if your icon isn't blocky in nature.

Modern browsers all allow specification of a favicon via a <link> tag in the page content, so you can specify a PNG favicon there while keeping a not-so-pretty ico favicon in the directory tree if you desire IE6 compatibility.

link|improve this answer
1  
Yeah, that's a good reason :) – voyager Aug 27 '09 at 22:45
11  
ICO also allows alpha channel – Álvaro G. Vicario Aug 24 '10 at 9:25
1  
@Alvaro: OS has nothing to do with it, it's browser support that matters. – Amber Aug 25 '10 at 2:34
9  
-1 ICO supports multiple resolutions including full alpha channel. By the way, 1-bit alpha is known as "transparency". The only real limit ICO has had was with icons larger or equal to 256 in length (any direction), though it's been overcome several times. – Christian Nov 2 '10 at 10:37
1  
-1 .ico also allow multiple resolution in one file (16x16 and 32x32 for example). So the icone stay nice when you create a shortcut on a desktop. – gagarine Feb 4 '11 at 22:54
show 2 more comments
feedback

All modern browsers (tested with Chrome 4, Firefox 3.5, IE8, Opera 10 and Safari 4) will always request a favicon.ico unless you've specified a shortcut icon via <link>. So if you don't explicitly specify one, it's best to always have a favicon.ico file, to avoid a 404. Yahoo! suggests you make it small and cacheable.

And you don't have to go for a PNG just for the alpha transparency either. ICO files support alpha transparency just fine (i.e. 32-bit color), though hardly any tools allow you to create them. I regularly use Dynamic Drive's FavIcon Generator to create favicon.ico files with alpha transparency. It's the only online tool I know of that can do it.

There's also a free Photoshop plug-in that can create them.

link|improve this answer
1  
Great hint this Dynamic Drive tool! Instantly bookmarked. Thanks! – Marcos Buarque Feb 19 '10 at 3:01
1  
Adding my thanks for the Dynamic Drive FavIcon. Very very cool! – macbutch Sep 21 '10 at 0:18
re tools, it is largely untrue; there are several icon designing tools. I wrote a simple one myself in the past. – Christian Nov 2 '10 at 10:39
@Christian, I know there are plenty dedicated icon tools that can do it; there's nothing really special about 32-bit color. But the only thing I ever really need an .ico for is for a favicon, so I tend to rely on free, online tools... I've also used this Photoshop plug-in, though: telegraphics.com.au/sw/#icoformat. I think I stopped using that for some reason, but I can't remember why. It works fine too. – mercator Nov 2 '10 at 12:37
Don't use photoshop for small icons...don't ask why, just don't. It dirties icon's format reputation. :) – Christian Nov 2 '10 at 19:57
show 2 more comments
feedback

.png files are nice, but .ico files provide alpha-channel transparency, AND give you backwards compatibility.

Have a look at which type StackOverflow uses for example (note that it's transparent):

<link rel="shortcut icon" href="http://sstatic.net/so/favicon.ico"> 
<link rel="apple-itouch-icon" href="http://sstatic.net/so/apple-touch-icon.png">

The apple-itouch thingy is for iphone users that make a shortcut to a website.

link|improve this answer
2  
PNG can also provide alpha channel – Álvaro G. Vicario Aug 24 '10 at 9:24
yeah, my point was that ico's can do everything that png's can do (alpha-transparency) as a favicon, and additionally they are supported by all browsers since year 0. – Wouter van Nifterick Aug 26 '10 at 23:31
according to wikipedia internet explorer will fail to support a line like this: <link rel="icon" type="image/vnd.microsoft.icon" href="example.com/image.ico"; /> – frankster Apr 30 '11 at 20:07
feedback

The theoretical advantage of *.ico files is that they are containers than can hold more than one icon. You could for instance store an image with alpha channel and a 16 colour version for legacy systems, or you could add 32x32 and 48x48 icons (which would should up when dragging a link to Windows explorer).

This good idea, however, tends to clash with browser implementations.

link|improve this answer
feedback

Since IE6-support has now been discontinued by MS, the question of compatibility with it is now not an issue ;-)

link|improve this answer
11  
... except in the real world. – Tom Wright Aug 31 '10 at 13:35
feedback

PNG has 2 advantages: it has smaller size and it's more widely used and supported (except in case favicons). As mentioned before ICO, can have multiple size icons, which is useful for desktop applications, but not too much for websites. I would recommend you to put a favicon.ico in the root of your application. An if you have access to the Head of your website pages use the tag to point to a png file. So older browser will show the favicon.ico and newer ones the png.

To create Png and Icon files I would recommend The Gimp.

link|improve this answer
Not so much for websites? Wait till everyone starts using retina-like displays; suddenly there will be a very good reason why one might to include a 32x32 or larger size in their favicon... – romkyns Jan 7 at 0:26
feedback

Avoid PNG in any case if you want reliable IE6 compatibility.

link|improve this answer
11  
There's no reason why you can't use both - an ico in the directory tree for IE6 and a PNG specified via a <link> in the page code for modern browsers. – Amber Aug 27 '09 at 22:47
Ah, good solution, thanks. – aehlke Aug 27 '09 at 22:50
2  
Why would you use both? If you're going to bother making an ico what benefit would using a png as well have? Surely it's just extra work and extra code. – Mr_Chimp Apr 27 '11 at 14:45
feedback

Furthermore - Google (google.com, google documents, youtube.com among others) and several other big players have dropped the support for IE6. IE6 RIP! =o)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.