You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have this issue with: viewbox minx/miny is other than 0 (not supported).
I understand the issue, the fix I'm doing on my side is to play with translateX, translateY. Can this be integrate into the tool?
<?xml version="1.0" encoding="utf-8"?>
<vectorxmlns:android="http://schemas.android.com/apk/res/android"android:width="30dp"android:height="30dp"android:viewportWidth="30"android:viewportHeight="30">
<pathandroid:fillColor="#FF0000"android:pathData="M 12 -8 H 38 V 18 H 12 V -8 Z" />
</vector>
Why not wrap it with a group translate:
<?xml version="1.0" encoding="utf-8"?>
<vectorxmlns:android="http://schemas.android.com/apk/res/android"android:width="30dp"android:height="30dp"android:viewportWidth="30"android:viewportHeight="30">
<groupandroid:translateX="-10"android:translateY="10">
<pathandroid:fillColor="#FF0000"android:pathData="M 12 -8 H 38 V 18 H 12 V -8 Z" />
</group>
</vector>
Thanks
The text was updated successfully, but these errors were encountered:
I have this issue with:
viewbox minx/miny is other than 0 (not supported)
.I understand the issue, the fix I'm doing on my side is to play with translateX, translateY. Can this be integrate into the tool?
Imagine I have a SVG:
The convert will produce:
Why not wrap it with a group translate:
Thanks
The text was updated successfully, but these errors were encountered: