获取位图图像的像素值c#

时间:2014-10-17 10:13:38

标签: c# image bitmap

我是C#的初学者,我只是想问一下如何在位图图片中显示每个像素的像素值

我使用下面的代码打开位图图片:

 private void pictureBox1_Click(object sender, EventArgs e)
    {
        OpenFileDialog dlg = new OpenFileDialog();
        dlg.Title = "Open Image";
        dlg.Filter = "bmp files (*.bmp)|*.bmp";
        if (dlg.ShowDialog() == DialogResult.OK)
        {
            pictureBox1.Image = Image.FromFile(dlg.FileName);
        }
        dlg.Dispose();

    }

如何修改它以显示标签中的像素值?

0 个答案:

没有答案