How to convert a JPEG image into SVG format using ImageMagick?

前端 未结 3 1082
南旧
南旧 2021-01-30 10:52

How to convert a JPEG image into SVG format using ImageMagick?

3条回答
  •  时光说笑
    2021-01-30 11:43

    you'll need to use potrace and convert to a bitmap first.

    $convert input.jpg output.ppm
    $potrace -s output.ppm -o svgout.svg
    

提交回复
热议问题