我目前正在编写一个应用程序,它会以编程方式将给定图像转换为8位位图,以便与XDC 8086 video/animation system一起使用。我已经知道如何使用.NET Framework进行转换:
public Bitmap Dither(Bitmap source)
{
Bitmap target = new Bitmap(source.Width,source.Height, PixelFormat.Format8bppIndexed);
//...call conversion/dithering code and methods here
return target;
}
但是,通过阅读UWP文档并在此处以及在Google上进行研究,我找不到UWP中类似或等效的方法。我错过了什么吗?