将矢量可绘制对象转换为 SVG
Convert Vector Drawable to SVG
有没有什么工具可以把Vector Drawable转成SVG?我丢失了原始 svg 文件,现在我想减小图像的大小。目前,我有,
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="1200dp"
android:height="1200dp"
android:viewportHeight="1200"
android:viewportWidth="1200">
我想将其设为 180x180。提前致谢。
看看这个Convert VectorDrawable to SVG
Vector Drawable 格式与 SVG 非常相似。只需进行一些修改,您就可以将 xml 可绘制对象变回 SVG
感谢制作此 python 脚本的人员,该脚本将 xml 可绘制对象转换回 SVG https://gitlab.com/Hyperion777/VectorDrawable2Svg
看看这个Shapeshifter
Shapeshifter 工具可以导入 VectorDrawable XML 文件并导出回 SVG 文件
有没有什么工具可以把Vector Drawable转成SVG?我丢失了原始 svg 文件,现在我想减小图像的大小。目前,我有,
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="1200dp"
android:height="1200dp"
android:viewportHeight="1200"
android:viewportWidth="1200">
我想将其设为 180x180。提前致谢。
看看这个Convert VectorDrawable to SVG
Vector Drawable 格式与 SVG 非常相似。只需进行一些修改,您就可以将 xml 可绘制对象变回 SVG
感谢制作此 python 脚本的人员,该脚本将 xml 可绘制对象转换回 SVG https://gitlab.com/Hyperion777/VectorDrawable2Svg
看看这个Shapeshifter
Shapeshifter 工具可以导入 VectorDrawable XML 文件并导出回 SVG 文件