0

我有这段 C# 代码:

private void btn_getPixels_Click_Click(object sender, EventArgs e)
{
    listBox1.Items.Clear();
    listBox1.Items.Add("Pixel             Color");
    try
    {
        Bitmap img = new Bitmap(pictureBox1.Image);
        Color c;

        for (int i = 0; i < img.Width; i++)
        {
            for (int j = 0; j < img.Height; j++)
            {
                c = img.GetPixel(i, j);
                listBox1.Items.Add(i + "," + j + "   " + c.Name);
            }
        }

        MessageBox.Show("SUCESSFULLY DONE");
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

问题是外部循环完成后,我在 listBox1 中看不到任何结果。

知道如何解决这个问题吗?

4

2 回答 2

4

您的代码成功运行(我检查过)。似乎是因为img.Widthorimg.Height是大值,并且您的程序仍在工作(因此您看不到结果)。试试这个循环,看看结果:

    for (int i = 0; i < 50; i++)
    {
        for (int j = 0; j < 50; j++)
        {
            ...
于 2012-08-01T10:41:53.307 回答
3

我对您的代码没有任何问题: 在此处输入图像描述

当然,mb 你必须改变宽度和高度进行测试。

于 2012-08-01T10:42:53.993 回答