Created
February 14, 2023 18:20
-
-
Save mrjk/0fe659354e0192832355a819cad6f483 to your computer and use it in GitHub Desktop.
Generate favicon from svg
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
#!/bin/bash | |
# Usage example: | |
# gen_favicon.sh SVG_FILE.svg OUT_FILE.ico | |
set -eu | |
# Generate favicon from official logo | |
convert -density 300 -define icon:auto-resize=256,128,96,64,48,32,16 -background none $1 $2 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment