Skip to content

Instantly share code, notes, and snippets.

@Buom01
Created August 26, 2021 02:47
Show Gist options
  • Select an option

  • Save Buom01/2ed2d68732d53aaee172b02e1aaf5a6b to your computer and use it in GitHub Desktop.

Select an option

Save Buom01/2ed2d68732d53aaee172b02e1aaf5a6b to your computer and use it in GitHub Desktop.
Convert SVG icons to PNG emoticons with ImageMagick
#!/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