Skip to content

Instantly share code, notes, and snippets.

@Mika-
Created June 17, 2015 18:07
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 Mika-/7b913177f1b73d3f8838 to your computer and use it in GitHub Desktop.
Save Mika-/7b913177f1b73d3f8838 to your computer and use it in GitHub Desktop.
Create a multi resolution favicon with imagemagick
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