I was trying to draw one of my SVGs, but got the following error:
Error: unhandled exception: Unsupported SVG tag: clipPath [PixieError]
Simple test image that generates the error:
<?xml version="1.0" encoding="UTF-8"?>
<svg clip-rule="evenodd" fill-rule="evenodd" version="1.1" viewBox="0 0 140 140" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<rect x="20" y="20" width="100" height="100"/>
<clipPath id="a">
<rect x="20" y="20" width="100" height="100"/>
</clipPath>
<g clip-path="url(#a)">
<rect x="40" y="40" width="100" height="100" fill="#f00"/>
</g></svg>
I don't know if the current plan is to use Cairo for SVGs, but I thought I would create an issue anyways.
How hard would it be implementing clipPath given that we already have masks in the drawing library?
I was trying to draw one of my SVGs, but got the following error:
Simple test image that generates the error:
I don't know if the current plan is to use Cairo for SVGs, but I thought I would create an issue anyways.
How hard would it be implementing
clipPathgiven that we already have masks in the drawing library?