-1

I'm looking for source code that converts JPG bitmap images to SVG.
I will a stand-alone solution I can put and launch online.

I found Potrace but it works with BMP input.

Matthew Flaschen
  • 278,309
  • 50
  • 514
  • 539
Zorkzyd
  • 929
  • 3
  • 12
  • 30

1 Answers1

1

Thank to all of you, here's my process to convert JPG bitmap to SVG:

  • imagemagick to convert JPG to BMP
  • a python file using potrace via subprocess to convert BMP to SVG
  • mkbitmap is also useful to keep the max of details during the vectorization.
Zorkzyd
  • 929
  • 3
  • 12
  • 30