Reputation: 919
I want to know how to convert JPEG files to SVG files in Android? Or can I convert PDF into SVG format?
Upvotes: 0
Views: 1096
Reputation: 681
JPEG is a raster/bitmap format. SVG is a vector format. Going from bitmap to vector is not a trivial task, as a vector format describes shapes and attributes in an XML format. At the very best, a vector representation of a bitmap would be wildly inefficient.
Perhaps you can give an idea of what you are trying to do, and someone can help with the larger problem?
Upvotes: 2