We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inkscape use a custom namespace in its SVG:
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
And there are 2 attributes in it that I think can be easily mapped to Android vector:
inkscape:transform-center-x inkscape:transform-center-y
they can become pivotX / pivotY
I don't know if there are any other Inkscape specific attributes that can be converted into Android Vector drawables.
In theory this link should document all the differences between standard SVG and Inkscape SVG: http://wiki.inkscape.org/wiki/index.php/Inkscape_SVG_vs._plain_SVG
In practice those two attributes are not listed there.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Inkscape use a custom namespace in its SVG:
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
And there are 2 attributes in it that I think can be easily mapped to Android vector:
they can become pivotX / pivotY
I don't know if there are any other Inkscape specific attributes that can be converted into Android Vector drawables.
In theory this link should document all the differences between standard SVG and Inkscape SVG:
http://wiki.inkscape.org/wiki/index.php/Inkscape_SVG_vs._plain_SVG
In practice those two attributes are not listed there.
The text was updated successfully, but these errors were encountered: