How do I convert pngs directly to android vector drawables? How do I convert pngs directly to android vector drawables? android android

How do I convert pngs directly to android vector drawables?


Ok, so you can convert PNG to Android vector drawable following these steps

  • Step 1: Convert PNG to SVG (Scalable Vector Graphics)

https://www.autotracer.org/

Or you can use any online converter of your choice

http://a-student.github.io/SvgToVectorDrawableConverter.Web/

Alternatively you can also use Android studio to generate Vector drawables from SVG generated in Step 1.

  • Inside Android studio, right click on your drawable folderNew > Vector Asset

This will open up the Android studio Vector asset generator. Select a local SVG file (the one you generated online)

enter image description here

You can also refer to this posthttps://stackoverflow.com/a/35402459/6142219