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

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?

share|improve this question

8 Answers

up vote 36 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

share|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
1  
Note that iPads use the following sizes for icons: 72x72 1st and 2nd gen; 144x144 for 3rd gen "Retina". – donut May 31 '12 at 16:47
1  
Since the OP is talking about the apple-touch-icon (i.e. the image iOS plucks from a website to display as an icon on the Home screen), and not a native app's own icons, the 640 x 940 title image is not relevant here. (That said there is a 'Start Up' image of 320 x 480, as described here – user577537 Jun 20 '12 at 8:26

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.

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

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

share|improve this answer

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

share|improve this answer

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.

share|improve this answer

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

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

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.

share|improve this answer

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.

share|improve this answer

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.

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