C#UWP位图 - 如何以编程方式创建索引位图?

时间:2016-12-12 01:35:54

标签: c# bitmap uwp

我目前正在编写一个应用程序,它会以编程方式将给定图像转换为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中类似或等效的方法。我错过了什么吗?

0 个答案:

没有答案