Render Bitmaps by using SkiaSharp instead of System.Drawing

861 Views Asked by At

With the recent update to Net 6.0 the System.Drawing.Common libary is only supported on Windows. In my WPF Application I decided to swap it for SkiaSharp but encountered a problem in the process.

Every information I found about rendering with Skia comes down to using a System.Drawing.Bitmap and forward it to the UI which as far as I understand, is only supported on Windows.

So my question is how do I render my Images with Skia in Net 6.0 without using System.Drawing.Common?

0

There are 0 best solutions below