Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make several PNGs into one ICO file [closed]

Tags:

windows

icons

ico

With Windows ICO files, you can pack several different sized images into the same ICO file - Windows then picks different sizes based on what it needs. (see here for info about icon sizes)

There are lots of free online tools that take a singe image and make it into an ICO file, but are there any free online tools that take several images and make them into one ICO file?

like image 205
codeulike Avatar asked Jan 26 '11 18:01

codeulike


People also ask

How do I convert multiple PNG to ICO?

To convert PNG to ICO free on Windows, use GIMP as follow:Drag n drop the PNG image. Head to File>Export As. Expand the Select File Type list, pick ICO format, click Export. Look at the output details and adjust, click Export to convert PNG to ICO free in GIMP.

How do I convert a PNG file to an icon?

How to convert a PNG to a ICO file? Choose the PNG file that you want to convert. Select ICO as the the format you want to convert your PNG file to. Click "Convert" to convert your PNG file.

Is an ICO file Just a PNG?

No. An ICO is actually a specialized file format that contains a collection of images at potentially many different sizes and color depths. A png is a specific image.


2 Answers

Turns out you can also do this with Gimp, as described here:

  • Open the largest of the icon images in The GIMP. Right-click on the image and select File->Open as Layers... and select all the other icon images.
  • This will create a single image with a layer containing each of the other icon images.
  • Save the image as a Microsoft Windows Icon (.ico) image - File->Export (or File->Save As in older versions of GIMP), and then type in the filename, e.g. favicon.ico. (this will automatically select the .ico format)
like image 105
codeulike Avatar answered Oct 03 '22 06:10

codeulike


ICOBundle - Free Program from Telegraphics http://www.telegraphics.com.au/sw/product/ICOBundle

you first create icon files in the required sizes and then combine it with ICOBundle. For the creation of the icon files i use the photoshop plugin http://www.telegraphics.com.au/sw/product/ICOFormat

it is a command line utility but the usage is quite simple

icobundl.exe -o favicon.ico favicon16x16.ico favicon32x32.ico
like image 11
c33s Avatar answered Oct 03 '22 06:10

c33s