Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

closed as off topic by Will Mar 19 at 11:20

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

8 Answers

up vote 72 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.

share|improve this answer
1  
Yeah, that's a good reason :) – voyager Aug 27 '09 at 22:45
31  
ICO also allows alpha channel – Álvaro G. Vicario Aug 24 '10 at 9:25
6  
@Alvaro: Only a 1-bit alpha, not a full byte. – Amber Aug 24 '10 at 16:18
26  
-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
10  
-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

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.

share|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
3  
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
1  
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
1  
For those that don't have $650 bucks for Photoshop, you can use pixlr.com (for free) to create, edit and save .png files with full layering and transparency :) – Scott B Feb 15 '12 at 23:09
show 7 more comments

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

share|improve this answer
3  
PNG can also provide alpha channel – Álvaro G. Vicario Aug 24 '10 at 9:24
3  
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

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.

share|improve this answer
Related to this is the fact that IE9 also uses those large icons to pin to the win7 taskbar see: stackoverflow.com/questions/3723715/… – GazB Jun 26 '12 at 10:56
Uhm, theoretical? The same icon shipped with Windows 7 can be used in Windows 95 in 8bit color mode. I think that's quite practical, no? – Christian Oct 14 '12 at 17:13

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

share|improve this answer
21  
... except in the real world. – Tom Wright Aug 31 '10 at 13:35
3  
You are wrong - Microsoft still supports Internet Explorer 6 with security updates and will support it until it supports Windows XP - April 2014, as this is the browser that shipped with this operating system. It does not mean that using it today is sane. – Tometzky Jun 20 '12 at 11:09
Of course, IE7, IE8, IE9, and IE10 compatibility is still an issue :) – ShadowChaser Feb 2 at 17:37

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

share|improve this answer
12  
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
5  
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

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.

share|improve this answer
2  
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 '12 at 0:26

Some social tools like Google+ use a simple method to get a favicon for external links, fetching http://your.domainname.com/favicon.ico

Since they don't prefetch the HTML content, the <link> tag will not work. In this case, you might want to use a mod_rewrite rule or just place the file in the default location.

share|improve this answer
1  
Don't know whether it is true or false but it was the deciding argument for me to go and create favicon.ico in root in addition to png i have. – Alexei Tenitski Oct 18 '12 at 9:40
I know this from work at telly.com, -via paul lindner who is on the google plus team. plus.google.com/117259934788907243749/about – jdavid.net Nov 1 '12 at 20:48

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