user493244
user493244

Reputation: 919

Conversion of JPEG to SVG in Android

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

Answers (1)

mchang
mchang

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

Related Questions