Created
March 23, 2016 14:18
-
-
Save skratchdot/bbb9c9b87dd95b6eaa29 to your computer and use it in GitHub Desktop.
Convert Image (.png) to .svg
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
| # | |
| # 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