Last active
March 27, 2019 15:33
-
-
Save u01jmg3/e3818f72f793223dc7ac312a9371b34e to your computer and use it in GitHub Desktop.
Image conversion
This file contains hidden or 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