Tebjan Halm

Results 92 comments of Tebjan Halm

Thanks for the detailed description!

@pmready let us know when you have a PR ready.

i am afraid this is a GDI bug... hard to tell.

a better project which is also based on this repo seems to be: https://github.com/wieslawsoltes/Svg.Skia

I think we cannot introduce the unsafe flag, many bigger enterprise projects don't allow to reference assemblies with that flag. New .NET versions have many new safe memory operations. Probably...

Wow, very interesting issue. I wasn't aware of that, since I never questioned the license when I forked the library from codeplex... I'll dig into it after work tonight.

we are accepting pull requests ;)

See the linked issue, we could evaluate whether we could join forces with the skia drawing repo.

> You can see in all cases I am passing drawing context `object canvas` as `object`. > > In each the `draw` method I am casting drawing context `canvas` to...

not sure if the canvas object is necessary, why not simply? or am i missing something? ```C# public class SvgCircle { // ... public void Draw(ISvgRenderer renderer) { renderer.DrawCircle(this); }...