3

我想运行这段代码

        Bitmap grayImage = (Bitmap)img.Clone();

        for (int x = 0; x < arr.GetLength(0); x++)
        {
            for (int y = 0; y < arr.GetLength(1); y++)
            {
                int col = arr[x, y];
                Color grau = Color.FromArgb(col, col, col);
                grayImage.SetPixel(x, y, grau);
            }
        }

如果我运行代码,我会在这一行出现异常: grayImage.SetPixel(x, y, grau);

以下是异常详细信息:

System.Runtime.InteropServices.ExternalException wurde nicht behandelt。Message="GDI+ 中出现一般错误。" Source="System.Drawing" ErrorCode=-2147467259 StackTrace: 在 System.Drawing.Bitmap.SetPixel(Int32 x, Int32 y, Color color) 在 Metalldetektor.Bild.ArrToPic(Int32[,] arr, Image img) 在 D: \Documents\Visual Studio 2008\Projects\WindowsFormsApplication1\WindowsFormsApplication1\Bild.cs:D:\Documents\Visual Studio 2008\Projects\WindowsFormsApplication1\WindowsFormsApplication1\Form1 中 Metalldetektor.Form1.button2_Click(Object sender, EventArgs e) 的第 44 行。 cs:System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button,

我不知道该怎么做所以请帮忙!

4

4 回答 4

2

过去我也遇到过类似的问题,我的克隆位图有一些伪影。在研究了这个问题一段时间后,我偶然发现了这个有帮助的线程

尝试更换您的 Clone()

Bitmap grayImage = (Bitmap)img.Clone();

有了这个:

Bitmap grayImage = new Bitmap(img);
于 2009-05-16T11:30:34.260 回答
0

我不知道这个错误,但这可能是 LockBits 的情况......我会看看我是否可以举个例子。

这是一个将数据数组写入 ARGB 位图的简化示例:

    // fake data
    int[,] data = new int[100, 150];
    int width = data.GetLength(0), height= data.GetLength(1);
    for (int x = 0; x < width; x++)
        for (int y = 0; y < height; y++)
            data[x, y] = x + y;

    // process it into a Bitmap
    Bitmap bmp = new Bitmap(width, height, PixelFormat.Format32bppArgb);
    BitmapData bd = bmp.LockBits(new Rectangle(0, 0, width, height),
       ImageLockMode.WriteOnly, PixelFormat.Format32bppArgb);
    unsafe {
        byte* root = (byte*)bd.Scan0;
        for (int y = 0; y < height; y++) {
            byte* pixel = root;
            for (int x = 0; x < width; x++) {
                byte col = (byte)data[x, y];
                pixel[0] = col;
                pixel[1] = col;
                pixel[2] = col;
                pixel[3] = 255;
                pixel += 4;
            }
            root += bd.Stride;
        }
    }
    bmp.UnlockBits(bd);
    bmp.Save("foo.bmp"); // or show on screen, etc

这种方法应该.SetPixel

于 2009-05-16T11:17:36.757 回答
0

很久以前,在我队友的一个系统上处理图像(通过从 SQL 服务器读取二进制数据创建图像)时出现了一些错误。相同的代码在其他机器上运行良好。原来,他安装了一些图形驱动程序的更新,这导致了问题。

于 2009-05-16T11:27:59.993 回答
0

如果您只是覆盖所有内容(或左上角的矩形),为什么还要克隆另一个图像?

于 2009-05-16T11:29:50.113 回答