在 system.drawing 中有一个像素格式,我们在创建 BITMAP 时添加了像素格式。请参考以下代码。
Bitmap image = new Bitmap((int)width, (int)height, PixelFormat.Format1bppIndexed);
由于 ASP.NET 核心不支持 system.Drawing,我们使用了skiasharp。在其中我们找不到位图的像素格式。请在skiasharp 中为以下像素提供等效的像素格式。
PixelFormat.Format1bppIndexed
PixelFormat.Format32bppArgb
PixelFormat.Format8bppIndexed
PixelFormat.Format24bppRgb
PixelFormat.Format4bppIndexed
谁能提供在skiasharp中找到等效像素格式类型的建议。
谢谢,莫汉小号