Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I simply want to have an .ico file that has multiple sizes of the icon image contained within it. I'd like it for use in a cross-platform desktop application (so that, e.g. on Windows, the 16x16 size is used for the app's top bar but a 32x32 size version is used when the various open apps are shown when using Alt-Tab). Once I have that .ico file, I know how to use it within my widget toolkit to get this effect, but I don't know how to get it.

How can I make/get/have this? Thanks.

share|improve this question

7 Answers

This can be done for free using the GIMP.

It uses the ability of GIMP to have each layer a different size.

I created the following layers sized correctly.

  • 256x256 will be saved as 32bpp 8bit alpha
  • 48x48 will be saved as 32bpp 8bit alpha
  • 48x48 will be saved as 8bpp 1bit alpha
  • 32x32 will be saved as 32bpp 8bit alpha
  • 32x32 will be saved as 8bpp 1bit alpha
  • 32x32 will be saved as 4bpp 1bit alpha
  • 16x16 will be saved as 32bpp 8bit alpha
  • 16x16 will be saved as 8bpp 1bit alpha
  • 16x16 will be saved as 4bpp 1bit alpha

Notes

  • You may need to check other resources to confirm to yourself that this is a sensible list of resolutions and colour depths.
  • Make sure you use transparency round the outside of your image, and anti-aliased edges. You should see the grey checkerboard effect round the outside of your layers to indicate they are transparent
  • The 16x16 icons will need to be heavily edited by hand using a 1 pixel wide pencil and the eyedropper tool to make them look any good.
  • Do not change colour depth / Mode in GIMP. Leave it as RGB
  • You change the colour depths when you save as an .ico - GIMP pops up a special dialog box for changing the colour settings for each layer

Here is a video showing the steps http://regx.dgswa.com/html/Gimp+ico+how+to

share|improve this answer
I can confirm after a few hours of my ICO not working that saving with these exact sizes / settings fixed the problem. – int0x90 Nov 21 '12 at 0:38
The IcoFX program is much easier to work with. It only took me 5 minutes to create 3 new icons, with each one having 16x16, 32x32 and 48x48 resolutions. – dodgy_coder Jan 31 at 7:30
1  
I had all the images already, delivered by the artist for mac. All I had to do was open one of them in Gimp, and the choose "Open as layers.." on the remaining ones. All layers are automatically created in the correct size, export to ico and presto! – Nicolas Mommaerts May 15 at 22:25

The excellent (and free) IcoFX allows you to create and edit icons, including multiple sizes up to 256x256, PNG compression, and transparency. I highly recommend it over most of the alternates.

Get your copy here: http://icofx.ro/


Windows automatically chooses the proper icon from the file, depending on where it is to be displayed. For more information on icon design and the sizes/bit depths you should include, see these references:

share|improve this answer
1  
As an update to this post: IcoFX is no longer free but does allow 15 evaluation runs. Do not down-vote this post as it was free at the time of writing. – PaulSkinner Aug 29 '12 at 16:20
1  
IcoFX worked well for me. I just downloaded it and the limitation now is that the Save function will be disabled after 30 days. – dodgy_coder Jan 31 at 7:27
says its $50 not free. – chovy May 3 at 23:22
1  
@chovy It used to be free—at the time this answer was written. The developer has changed that now. I continue to use the old version (1.6.4), which is free. I don't think the enhancements are worth paying for. You can probably find a download link if you Google it. – Cody Gray May 7 at 22:52

Indeed, I used ICO Fx (which is not free anymore, but I used the 30 day trial version) to create an .ico file which included multiple image formats / sizes.

This tutorial was very helpful: http://icofx.ro/tutorials2/tut1.html

share|improve this answer

Ico Fx is free software.
The best way is to design the icon in the preffered size in your preffered designing application and then copy paste the image in icofx in the corresponding icon size.
Then you can export the icon in .ico format for use in your application.
It can look difficult to draw icon in IcoFx, but the above method is the easiest way to quickly convert icon to .ico format.

share|improve this answer
1  
IcoFx is not freeware, it's trial, and only lasts 14 startups. – Zom-B Feb 27 '12 at 12:23
1  
dont downvote this, it was then free!! – nawfal Jul 31 '12 at 20:50

http://www.free-icon-editor.com/

share|improve this answer
2  
Lone link is considered a poor answer since it is meaningless by itself and target resource is not guaranteed to be alive in the future. Please try to include at least summary of information you are linking to. – j0k Aug 28 '12 at 9:54
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Dervall Aug 28 '12 at 14:29

I found an app for Mac OSX called ICOBundle that allows you to easily drop a selection of ico files in different sizes onto the ICOBundle.app, prompts you for a folder destination and file name, and it creates the multi-icon .ico file.

Now if it were only possible to mix-in an animated gif version into that one file it'd be a complete icon set, sadly not possible and requires a separate file and code snippet.

share|improve this answer

The following website seems to allow you to easily upload multiple .png images and it converts them for free into a single .ico file:

http://convertico.org/Multi_Image_to_one_icon/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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