Created
September 5, 2018 19:46
-
-
Save chranderson/820f7d7a318f7746866877edb086b808 to your computer and use it in GitHub Desktop.
multi-size favicon generator
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
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