Skip to content

Instantly share code, notes, and snippets.

@RahulSDeshpande
Forked from ykarikos/png2svg.sh
Created August 12, 2014 04:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RahulSDeshpande/574aac33b75b258f789d to your computer and use it in GitHub Desktop.
Save RahulSDeshpande/574aac33b75b258f789d to your computer and use it in GitHub Desktop.
#!/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