Skip to content

Instantly share code, notes, and snippets.

@waltergu
Created November 1, 2018 04:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save waltergu/7d6377270ba3dc09954ebc07fa3e9605 to your computer and use it in GitHub Desktop.
Save waltergu/7d6377270ba3dc09954ebc07fa3e9605 to your computer and use it in GitHub Desktop.
Create icon files
1. Prepare the original picture with a square resolution > 512x512 in the bmp/png format.
2. Install a software that can modify the resolution and convert the format of pictures, especially, can generate icon files. "ImageMagic" is recommeded which supports multiplatforms. [http://www.imagemagick.org/script/index.php]
3. Generate pictures with different resolutions (16x16,32x32,64x64,128x128,256x256,512x512) of the original one, and combine them to be an icon file. For "ImageMagic", just run the following commands (assume the original picture is "logo.bmp"):
convert logo.bmp -resize 512x512 logo512.bmp
convert logo.bmp -resize 256x256 logo256.bmp
convert logo.bmp -resize 128x128 logo128.bmp
convert logo.bmp -resize 64x64 logo64.bmp
convert logo.bmp -resize 32x32 logo32.bmp
convert logo.bmp -resize 16x16 logo16.bmp
convert logo16.bmp logo32.bmp logo64.bmp logo128.bmp logo256.bmp logo512.bmp logo.ico
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment