up vote 36 down vote favorite
16
share [g+] share [fb]

I'm not sure what the correct size should be.

Many sites seem to repeat that the apple-touch-icon should be 57x57 pixels but cite a broken link as their source.

Hanselman's and playgroundblues's comments suggest different sizes including 163x163 and 60x60.

Apple's own apple.com icon is 129x129!

See my related question: How do I give my web sites an icon for iPhone?

link|improve this question

63% accept rate
feedback

protected by Will Aug 16 '10 at 12:50

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

8 Answers

up vote 30 down vote accepted

it seems that Apple guidelines as of August 3, 2010 now include the "High resolution" images (for iPhone 4) in their "required" icon sizes. Looks like we need to provide both a 57x57 and a 114x114 image now, as well as a 640x960 title image.

http://developer.apple.com/iphone/library/documentation/userexperience/conceptual/mobilehig/IconsImages/IconsImages.html#//apple_ref/doc/uid/TP40006556-CH14-SW2

link|improve this answer
I had some trouble getting the title images to work. Found a working example here: gist.github.com/472519 (<!-- STARTUP IMAGES --> section) – Blaise Nov 25 '11 at 13:36
feedback

From the Google cache of Apple Developer Connection - Web Apps Dev Center - Designing Content...

Create a Web Clip Bookmark Icon

iPhone and iPod touch allow a user to save a Web Clip bookmark to your site on their Home Screen.

To specify a bookmark icon for all pages of a web site, place a PNG image named "apple-touch-icon.png" at the root directory of your web server - similar to the "favicon.ico" for site icons.

To override the site bookmark icon on a specific web page, insert a <link> element similar to <link rel="apple-touch-icon" href="/customIcon.png"/> within the element of the page.

The bookmark icon dimensions should be 57x57 pixels. If the icon is a different size it will be scaled and cropped to fit.

Safari will automatically composite the icon with the standard "glassy" overlay so it looks like a built-in iPhone or iPod application.

link|improve this answer
2  
Your answer is outdated. See stackoverflow.com/questions/1598/… – Georg Schölly Aug 16 '10 at 6:21
feedback

Depends on how much detail you want it to have, it needs to have the aspect ratio of 1:1 (basically - it needs to be square)

I would go with the Apple's own 129*129

link|improve this answer
feedback

Can you cite a source for that size?

Sure, although the official reference is under lock and key of ADC (Google cache still has it), many of the non-NDA sites have the tutorials on how to create the icons. One example is here:

DAN DICKINSON: THE PRIMARY VIVID WEBLOG

link|improve this answer
feedback

As part of their Safari Web Content Guide, Apple actually has a publicly available page called "Specifying a Webpage Icon for Web Clip" which covers all of the resolutions and their implementation.

link|improve this answer
feedback

The official size is 57x57. I would recommend using the exact size simply due to the fact that it takes less memory when loaded (unless Apple caches the scaled representation). With that said, Rex is right that any square size will work

link|improve this answer
Except that it might look blurry on iPads and iPhone 4s... – Simon Jul 14 '11 at 2:14
feedback

I don't think there is a "correct size". Since the iPhone really is running OSX, the icon rendering system is pretty robust. As long as you give it a high-quality image with the right aspect ratio and a resolution at least as high as the actual output will be, the OS will downscale very cleanly. My site uses a 158x158 and the icon looks pixel-perfect on the iPhone screen.

link|improve this answer
feedback

NilObject's link led me to the great blog post Catchup on your Icon at makentosh.com

... Of course all of this inconsistency had to be dealt with eventually, right? Well 2.0 dealt with it in fine fashion! Finally 57x57 actually meant 57x57.

...each and every pixel ... rendered perfectly.

link|improve this answer
feedback

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