Skip to content

Instantly share code, notes, and snippets.

@espeed
Created November 2, 2014 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save espeed/74fbf96386ec1afc93b9 to your computer and use it in GitHub Desktop.
Save espeed/74fbf96386ec1afc93b9 to your computer and use it in GitHub Desktop.
ImageMagick command to convert PNG file to transparent favicon.ico
convert app-icon.png
\( -clone 0 -resize 16x16 \)
\( -clone 0 -resize 32x32 \)
\( -clone 0 -resize 48x48 \)
\( -clone 0 -resize 64x64 \)
-delete 0 -alpha on -background transparent favicon.ico
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment