Is there a way to bulk convert svg files using Android Asset Studio?

6.1k Views Asked by At

I have a large number of svg files I want to convert to xml vector assets for Android.

The documented process is, for each file, File->New->Vector Asset. Then choose the svg file, click Next then Finish.

Is there a faster way? Maybe a bash comment to launch Asset Studio?

5

There are 5 best solutions below

1
On

There are few Git projects which would help you achieve the bulk conversion of svg files to Vector Drawable supported by android.

  1. Juraj Novák's : http://inloop.github.io/svg2android/

  2. SvgToVectorDrawableConverter original repo was deleted. But you could choose one of the fork . Example: svg2vd -i "\*" -o out --fix-fill-type

  3. For single conversion: SVG to Vector Drawable Convertor online

  4. Use wrapper of original converter ported from Android Studio

Hope it helps!

0
On

download this jar file and use it as in the bellow example

java -jar C:\Users\dan\Downloads\Svg2VectorAndroid-1.0.jar C:\Users\dan\Desktop\svgs_dir
1
On

Use this link, it's really helpful : https://svg2vector.com/

Just upload your svg file (you can select multiple files) and download all drawable files. Just copy to your Drawable project file and viola!

0
On

Keep Svg2VectorAndroid.jar and the folder that having all the Svg file in same folder and then open cmd and go to that folder path where you put your jar and source folder and then execute the command

java -jar Svg2VectorAndroid.jar <source folder name>

and press enter. Now you can get your all xml file in source folder with folder name ProcessedSVG.

Hope it helps.

1
On

The Resource Manager tool that was added in Android Studio version 3.4 can bulk import SVGs and convert them into vector drawables.

  1. ToolsResource Manager
  2. Select the Drawable tab
  3. Click the + button in the top left corner
  4. Select Import Drawables

There you can select all the files you want to import at once. More details here.