Skip to content

Instantly share code, notes, and snippets.

@lukem512
Last active February 20, 2016 12:58
Show Gist options
  • Save lukem512/91c6232eba6211496bc8 to your computer and use it in GitHub Desktop.
Save lukem512/91c6232eba6211496bc8 to your computer and use it in GitHub Desktop.
Convert an image into a favicon with multiple sizes using ImageMagick
convert image.png -bordercolor white -border 0 \
\( -clone 0 -resize 16x16 \) \
\( -clone 0 -resize 32x32 \) \
\( -clone 0 -resize 48x48 \) \
\( -clone 0 -resize 64x64 \) \
-delete 0 -colors 256 favicon.ico
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment