Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can i convert simple shape bitmap to vector ( geometry)

Tags:

bitmap

wpf

vector

I would to know if it's possible to convert a simple bitmap to a geometry object

like image 680
guillaume Avatar asked Oct 14 '22 04:10

guillaume


1 Answers

Yes, you can using tracing. Potrace is an open source bitmap-to-vector tracer library.

However, bitmap tracing is imperfect; for high-quality vector image, line tracer is generally only used to do the initial tracing, which would later be hand-tweaked. Inkscape, an open source vector image editor, provides built-in support for tracing (internally using potrace).

like image 113
Lie Ryan Avatar answered Dec 01 '22 00:12

Lie Ryan