Convert Image to Vector in c#,how to Convert jpg image to vector

I want to convert any image type i.e jpg, jpeg or png file to vector in C#. Is it possible to convert any image type to Vector(SVG) in C#. I searched about this topic like Convert Byte array to Vector because i think that i can convert image first into byte array and then vector in C# but how ? Is it possible to convert Raster to Vector ? Please help me. Thanks…,I want to Convert any jpg, jpeg, png type images to Vector(SVG). Is it possible to convert any type image to vector in C#.I searched about this topic like Byte array to vector because i thought that i can convert image first into byte array and then vector but how ? Please help me. Thanks…

Vectors and Images are such intrinsically different data types that a direct conversion in that direction is impossible.

The best that can be done from image to vector is to have some code that recognises shapes in the picture and use it to draw around each shape rather like you would with tracing paper to create the vector data that way.

As to the piece of code to do it, well that’s what I’m searching for too…