Skip to content

Instantly share code, notes, and snippets.

@banyudu
Forked from azam/svg2ico.sh
Last active March 8, 2020 13:08
Show Gist options
  • Save banyudu/e0d20c1c1a83fa865d0d6a0e53d23581 to your computer and use it in GitHub Desktop.
Save banyudu/e0d20c1c1a83fa865d0d6a0e53d23581 to your computer and use it in GitHub Desktop.
Convert SVG to ICO using ImageMagick, with transparent background and multi-size icons
srcfile=$1
dstfile=$(basename $srcfile .svg).ico
convert -density 256x256 -background transparent $srcfile -define icon:auto-resize -colors 256 $dstfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment