Last active
March 27, 2019 15:33
Image conversion
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
for %I in (*.svg) do convert -density 1536 -background none "%I" ( -clone 0 -background #989898 -shadow 80x3+5+5 ) -reverse -background none -resize 120x120 -gravity center -extent 192x192 -layers merge +repage "%~nI.png" | |
for %I in (*.svg) do outline-stroke "%I" -o "%I" | |
for %I in (*.svg) do svgo "%I" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment