How to convert a .png to .ico file Ubuntu Linux

I needed to create a .iso file to make a Windows icon. You need to use icotool which is part of icoutils.

apt-get install icoutils

Then:

icotool -c -o launcher_icon_128.ico launcher_icon_128.png

Job done.

Leave a Reply