Really? I didn't know that. Well, if that's true and you want a way to convert PNGs to it, I have a useful script I got a long time ago that someone made. It provides you with two more GD2 functions; ImageBMP and ImageCreateFromBMP. So you can basically open your PNG file with GD2 and then have it save it as a .ico using the ImageBMP function. <? $img = ImageCreateFromPNG("your image.png"); ImageBMP($img, "your image.ico"); ImageDestroy($img); ?> PHP: Here's the BMP script, just include it: http://pastebin.com/f22234b9b
Thanks for the suggestions. I was going to build a image convert site rather than just convert some icons of my own. =) It's done now. http://www.converthub.com using ImageMagick.