Created
August 26, 2021 02:47
-
-
Save Buom01/2ed2d68732d53aaee172b02e1aaf5a6b to your computer and use it in GitHub Desktop.
Convert SVG icons to PNG emoticons with ImageMagick
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
| #!/bin/sh | |
| size="128" | |
| for file in *.svg; do | |
| convert -background transparent -geometry ${size}x${size} -gravity Center -extent ${size}x${size} ${file} ${file%%.*}_1x1.png | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment