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
No description provided.
The text was updated successfully, but these errors were encountered:
Do you have a sample?
Sorry, something went wrong.
Yes. According to SVG specifications (https://www.w3.org/TR/SVG11/pservers.html), it must be in the defs group. But Adobe Illustrator saves it, as shown below:
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 130"> <radialGradient id="radial"> <stop offset="10%" stop-color="#ffff00"/> <stop offset="95%" stop-color="#0000FF"/> </radialGradient> <linearGradient gradientUnits="userSpaceOnUse" id="linear" x1="20" x2="120" y1="20" y2="120"> <stop offset="0" stop-color="#0000FF"/> <stop offset="1" stop-color="#ffff00"/> </linearGradient> <path d="M 10 10L 100 10L 100 60L 10 60z" fill="url(#radial)"/> <path d="M 10 70L 100 70L 100 120L 10 120z" fill="url(#linear)"/> <path d="M 110 10L 160 10L 160 120L 110 120z" fill="url(#radial)"/> </svg>
f5ee8e4
Merge pull request #362 from f3dm76/task/parseGradients
85ecbf3
Fix #313: Gradients not parsing when they are not in <defs> group
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: