如何在skiasharp中找到等效的像素格式?

Moh*_*raj 5 asp.net skia asp.net-core skiasharp

在system.drawing中有一个pixelformat,我们在创建BITMAP时添加了像素格式。请参考下面的代码。

   Bitmap image = new Bitmap((int)width, (int)height, PixelFormat.Format1bppIndexed);
Run Code Online (Sandbox Code Playgroud)

由于 ASP.NET Core 不支持系统绘图,我们使用了skiasharp。在其中我们找不到位图的像素格式。请为以下像素提供skiasharp 中的等效像素格式。

PixelFormat.Format1bppIndexed   
PixelFormat.Format32bppArgb    
PixelFormat.Format8bppIndexed  
PixelFormat.Format24bppRgb 
PixelFormat.Format4bppIndexed
Run Code Online (Sandbox Code Playgroud)

任何人都可以提供在skiasharp 中查找等效像素格式类型的建议。

谢谢,莫汉小号