add imagemagick potrace info

This commit is contained in:
Malin Freeborn 2021-02-05 18:08:39 +01:00
parent 4bf8faa0b9
commit 733ba43e70
1 changed files with 10 additions and 0 deletions

View File

@ -56,6 +56,16 @@ do convert "$i" $(ls "$i" | sed s#jpg\$#svg#)
done
```
# SVG
The above script has crappy results.
It's better to use potrace.
```
$convert input.jpg output.ppm
$potrace -s output.ppm -o svgout.svg
```
# Writing Words
[docs](https://www.imagemagick.org/Usage/text/)