-
Hello, this was bothering me for a while, is it possible to use the skiasharp rendering directly outside of the WPF rendering? What I mean is to have a WPF window with a skiasharp canvas that's not under WPF limitations, rendered separately. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I am not sure that I 100% understand your question but I think the answer may be yes. |
Beta Was this translation helpful? Give feedback.
I am not sure that I 100% understand your question but I think the answer may be yes.
SkiaRenderContext
renders into aSKCanvas
and doesn't really care what that represents. It can be a WPF control, but it could also be an off-screen bitmap (as it is done e.g. for the Skia-basedPngExporter
).