SKBitmap.Bytes 是只读的,关于如何 Marshal.Copy 字节数组到 SKBitmap 的任何建议?我正在使用下面的代码片段,但它不起作用。
代码片段:
SKBitmap bitmap = new SKBitmap((int)Width, (int)Height);
bitmap.LockPixels();
byte[] array = new byte[bitmap.RowBytes * bitmap.Height];
for (int i = 0; i < pixelArray.Length; i++)
{
SKColor color = new SKColor((uint)pixelArray[i]);
int num = i % (int)Width;
int num2 = i / (int)Width;
array[bitmap.RowBytes * num2 + 4 * num] = color.Blue;
array[bitmap.RowBytes * num2 + 4 * num + 1] = color.Green;
array[bitmap.RowBytes * num2 + 4 * num + 2] = color.Red;
array[bitmap.RowBytes * num2 + 4 * num + 3] = color.Alpha;
}
Marshal.Copy(array, 0, bitmap.Handle, array.Length);
bitmap.UnlockPixels();