我在C#中使用byte []数组创建图像,然后将它们转换为Bitmap以便将它们保存到磁盘.
以下是我的代码中的一些摘录:
// Create an array of RGB pixels
byte[] pixels = new byte[width * height * 3];
// Do some processing here....
// Import the pixel data into a new bitma
Bitmap image = new Bitmap(width, height, width * 3, PixelFormat.Format24bppRgb, GCHandle.Alloc(pixels, GCHandleType.Pinned).AddrOfPinnedObject());
// Save the image
image.Save("testimage.png", ImageFormat.Png);
这很好用,直到宽度/高度不是2的幂(即512×512工作,但511×511没有),然后我得到以下错误:
Unhandled Exception: System.ArgumentException: Parameter is not valid.
at System.Drawing.Bitmap..ctor(Int32 width, Int32 height, Int32 stride, PixelFormat format, IntPtr scan0)
(.......)
作为参考,这是我的使用声明:
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.Runtime.InteropServices;
using System.Diagnostics;
为什么它不适用于尺寸不超过2的像素数据集呢?如何使用这样的尺寸?
最佳答案
Micke是对的,主要原因是32位大小的寄存器是4字节所以要优化速度和效率它应该是4的倍数,