Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

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

Writer Sebastian Wright

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?

4 Answers

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.

0

Looks like this will work as well.

2

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

2

There is a program could meet your requirement. It's GConvert:

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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy