Skip to content

Instantly share code, notes, and snippets.

@digideskio
Forked from ykarikos/png2svg.sh
Created March 27, 2018 07:56
Show Gist options
  • Save digideskio/2e160789e3cbaf4b160732ebbc1a2e1a to your computer and use it in GitHub Desktop.
Save digideskio/2e160789e3cbaf4b160732ebbc1a2e1a to your computer and use it in GitHub Desktop.
Convert png to svg using imagemagick and potrace
#!/bin/bash
if [ "$1" == "" ]; then
echo Usage: $0 pngfile
exit 0;
fi
FILE=`basename $1 .png`
if [ ! -e $FILE.png ]; then
echo $FILE.png does not exist
exit 1;
fi
convert $FILE.png $FILE.pnm
potrace -s -o $FILE.svg $FILE.pnm
rm $FILE.pnm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment