How can I combine several individual .ico files into a single file?

11

4

I was able to convert PNG files into ICO files (thanks to Turn pngs to one ICO file ), but now I would like to create an icon "bundle" similar to system32.dll, which contains several individual icons. How can this be done?

e.James

Posted 2010-10-21T17:06:39.420

Reputation: 788

Answers

4

You need to build a DLL that contains multiple icons as resources. That can be done from Visual Studio via these instructions. Other Windows development tools that can create a DLL should be able to do the same thing.

This could even been done with the resource compiler (rc.exe) that is included in the Windows SDK and manually creating a resource file.

shf301

Posted 2010-10-21T17:06:39.420

Reputation: 7 582

3

Looks like this will work as well.

http://convertico.org/Multi_Image_to_one_icon/

jp_d

Posted 2010-10-21T17:06:39.420

Reputation: 31

1

It turns out that there was a Java rewrite of CombineIcons called Icollator, although it still only supports up to 128x128 pixels.

tomatopipps

Posted 2010-10-21T17:06:39.420

Reputation: 11

could u elaborate your answer how icollator is usefull with respective to question – BlueBerry - Vignesh4303 – 2013-10-05T12:20:24.993

0

There is a program could meet your requirement. It's GConvert: https://www.gdgsoft.com/gconvert/help/index.aspx?page=HDIODll.htm

But so far, this freeware only support 256x256 size. If you ok with that then you may wanna give it a shot.

Star Light

Posted 2010-10-21T17:06:39.420

Reputation: 1