如何从Softwarebitmap设置/获取像素

时间:2018-05-03 23:37:07

标签: c# bitmap uwp

我正在尝试更改Softwarebitmap的像素。

我想知道Softwarebitmap UWP中是否存在Bitmap.Get/SetPixel(x,y,color)的等效内容。

1 个答案:

答案 0 :(得分:0)

如果你想阅读和编写应该使用不安全代码的softwareBitmap。

使用softwareBitmap很难写出一些代码。

首先使用一些代码。

using System.Runtime.InteropServices;

然后创建一个界面

[ComImport]
[Guid("5B0D3235-4DBA-4D44-865E-8F1D0E4FD04D")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
unsafe interface IMemoryBufferByteAccess
{
    void GetBuffer(out byte* buffer, out uint capacity);
}

您可以使用此代码更改像素。

创建软位图。

        var softwareBitmap = new SoftwareBitmap(BitmapPixelFormat.Bgra8, 100, 100, BitmapAlphaMode.Straight);

写像素。

         using (var buffer = softwareBitmap.LockBuffer(BitmapBufferAccessMode.ReadWrite))
        {
            using (var reference = buffer.CreateReference())
            {
                unsafe
                {
                    ((IMemoryBufferByteAccess) reference).GetBuffer(out var dataInBytes, out _);

                    // Fill-in the BGRA plane
                    BitmapPlaneDescription bufferLayout = buffer.GetPlaneDescription(0);
                    for (int i = 0; i < bufferLayout.Height; i++)
                    {
                        for (int j = 0; j < bufferLayout.Width; j++)
                        {
                            byte value = (byte) ((float) j / bufferLayout.Width * 255);
                            dataInBytes[bufferLayout.StartIndex + bufferLayout.Stride * i + 4 * j + 0] = value; // B
                            dataInBytes[bufferLayout.StartIndex + bufferLayout.Stride * i + 4 * j + 1] = value; // G
                            dataInBytes[bufferLayout.StartIndex + bufferLayout.Stride * i + 4 * j + 2] = value; // R
                            dataInBytes[bufferLayout.StartIndex + bufferLayout.Stride * i + 4 * j + 3] = (byte) 255; // A
                        }
                    }
                }
            }
        }

您可以编写用于写入dataInBytes的像素,您应该使用byte。

因为像素是BGRA,你应该写这个字节。

如果你想显示它,你需要在BitmapPixelFormat不是Bgra8时转换,而BitmapAlphaMode是Straight,你可以使用这段代码。

        if (softwareBitmap.BitmapPixelFormat != BitmapPixelFormat.Bgra8 ||
            softwareBitmap.BitmapAlphaMode == BitmapAlphaMode.Straight)
        {
            softwareBitmap = SoftwareBitmap.Convert(softwareBitmap, BitmapPixelFormat.Bgra8, BitmapAlphaMode.Premultiplied);
        }

此代码可以将其显示给Image。

        var source = new SoftwareBitmapSource();
        await source.SetBitmapAsync(softwareBitmap);
        Image.Source = source;

请参阅:Create, edit, and save bitmap images - UWP app developer