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.
|
|
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.
|
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 |
|||||||||||||||||||||
|
|
All modern browsers (tested with Chrome 4, Firefox 3.5, IE8, Opera 10 and Safari 4) will always request a 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 There's also a free Photoshop plug-in that can create them. |
|||||||||||||||||||||
|
|
.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):
The apple-itouch thingy is for iphone users that make a shortcut to a website. |
|||||||||||
|
|
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. |
|||||
|
|
Since IE6-support has now been discontinued by MS, the question of compatibility with it is now not an issue ;-) |
|||||||||||
|
|
Avoid PNG in any case if you want reliable IE6 compatibility. |
|||||||||||
|
|
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. |
|||||
|
|
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 |
|||||||
|