Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert Vector Drawable to SVG

Is there any tool to convert Vector Drawable to SVG? I lost my original svg file and now I would like to reduce the size of the image. Currently, I have,

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="1200dp"
    android:height="1200dp"
    android:viewportHeight="1200"
    android:viewportWidth="1200">

I would like to make it 180x180. Thanks in advance.

like image 983
sadat Avatar asked Jun 04 '26 13:06

sadat


1 Answers

Look at this Shapeshifter

Shapeshifter tool can import VectorDrawable XML file and export back to SVG file

like image 115
Guru Surend Avatar answered Jun 07 '26 02:06

Guru Surend