Skip to content

Instantly share code, notes, and snippets.

@binarytemple
Forked from espeed/png-to-ico.sh
Created January 25, 2016 15:00
Show Gist options
  • Save binarytemple/8885e93375f493cac00c to your computer and use it in GitHub Desktop.
Save binarytemple/8885e93375f493cac00c 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