Skip to content

Instantly share code, notes, and snippets.

@chranderson
Created September 5, 2018 19:46
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 chranderson/820f7d7a318f7746866877edb086b808 to your computer and use it in GitHub Desktop.
Save chranderson/820f7d7a318f7746866877edb086b808 to your computer and use it in GitHub Desktop.
multi-size favicon generator
install imagemagick (node)
https://www.npmjs.com/package/imagemagick
- npm -g install imagemagick
- brew install imagemagick
// in directory that contains favicon.png, run bash command:
convert favicon.png -alpha on -resize 256x256 \
-define icon:auto-resize="256,128,96,64,48,32,16" \
favicon.ico
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment