Created
November 2, 2014 20:13
-
-
Save espeed/74fbf96386ec1afc93b9 to your computer and use it in GitHub Desktop.
ImageMagick command to convert PNG file to transparent favicon.ico
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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