Skip to content

Instantly share code, notes, and snippets.

@skratchdot
Created March 23, 2016 14:18
Show Gist options
  • Select an option

  • Save skratchdot/bbb9c9b87dd95b6eaa29 to your computer and use it in GitHub Desktop.

Select an option

Save skratchdot/bbb9c9b87dd95b6eaa29 to your computer and use it in GitHub Desktop.
Convert Image (.png) to .svg
#
# http://stackoverflow.com/a/29515560
# use .pbm instead of .ppm for black/white only
#
sudo apt-get install potrace imagemagick
convert -flatten input.png output.ppm
potrace -s output.ppm -o output.svg
rm output.ppm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment