Skip to content

Instantly share code, notes, and snippets.

@bjorn2404
Created November 10, 2015 19:55
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 bjorn2404/5c81b83da20d0d162edd to your computer and use it in GitHub Desktop.
Save bjorn2404/5c81b83da20d0d162edd to your computer and use it in GitHub Desktop.
Imagemagick favicon
convert favicon.png -bordercolor white -border 0 \
\( -clone 0 -resize 16x16 \) \
\( -clone 0 -resize 32x32 \) \
\( -clone 0 -resize 48x48 \) \
\( -clone 0 -resize 64x64 \) \
\( -clone 0 -resize 128x128 \) \
\( -clone 0 -resize 256x256 \) \
-delete 0 -alpha off -colors 256 favicon.ico
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment