Created
June 17, 2015 18:07
-
-
Save Mika-/7b913177f1b73d3f8838 to your computer and use it in GitHub Desktop.
Create a multi resolution favicon with imagemagick
This file contains 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 logo.png -background transparent -resize 64x64 -gravity center -extent 64x64 ^ | |
( -clone 0 -resize 48x48 ) ^ | |
( -clone 0 -resize 32x32 ) ^ | |
( -clone 0 -resize 16x16 ) ^ | |
-colors 256 -alpha background favicon.ico |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment