Skip to content
Fernando Dodino edited this page Dec 2, 2019 · 6 revisions

Create the .icns file for MacOS product

In order to create the product icon file (icns) for MacOS you should do the following

cd  org.uqbar.project.wollok.ui/icons
iconutil -c icns wollok-logo.iconset

Follow this tutorial

Create the .icns file for Linux product

First install the tool sudo apt-get install icnsutils

Then package all the icon files

cd org.uqbar.project.wollok.ui/icons/wollok-logo.iconset
png2icns icon.icns icon_*.png

Create the .ico file for Windows Version

You need imagemagick

cd org.uqbar.project.wollok.ui/icons/
convert wollok-logo.iconset/icon_16x16.png wollok-logo.iconset/icon_32x32.png wollok-logo.iconset/icon_48x48.png wollok-logo.iconset/icon_64x64.png wollok-logo.iconset/icon_128x128.png wollok-logo.iconset/icon_256x256.png wollok-logo.iconset/icon_512x512.png wollok-logo.ico
Clone this wiki locally