Emmanuel Seynaeve

Results 9 comments of Emmanuel Seynaeve

Hi @arunchaganty, did you get this working? I'm trying to do the same thing. Any help would be much appreciated.

Here is a link to a simpler example: `https://storage.googleapis.com/lumen5-prod-lottie/square.svg`. This clearly illustrates that masks don't render properly. SVG Rendered using browser (GOOD) SVG Rendered using skia-python (BAD)

Another update on this issue. https://www.npmjs.com/package/canvaskit-wasm seems to work, rendering both sources as expected. This should indicate that this isn't a `skia` issue per se.

Thank you for getting back to me so quickly @kyamagu. I was assuming as much. Since `canvaskit-wasm` seems to address all of our requirements, we'll probably move forward with that...

This is working end to end example: ``` import skia stream = skia.FILEStream.MakeFromFile('./input.svg') dom = skia.SVGDOM.MakeFromStream(stream) # is there a way to query the bounding box from the loaded SVG?...