C#中,打开openFileDialog后,如何获取选中的栅格图片的灰度值
1个回答
展开全部
OpenFileDialog dialog = new OpenFileDialog();
if (dialog.ShowDialog() == DialogResult.OK)
{
string fileName = dialog.FileName;
Image image = Image.FromFile(fileName);
MessageBox.Show(image.PixelFormat.ToString());
}
if (dialog.ShowDialog() == DialogResult.OK)
{
string fileName = dialog.FileName;
Image image = Image.FromFile(fileName);
MessageBox.Show(image.PixelFormat.ToString());
}
更多追问追答
追问
非常感谢您的回答,如果没有MessageBox,不需要显示出来,只是要用到它的灰度信息,那如何获取呢?
追答
将 image.PixelFormat.ToString() 赋值给一个字符串就可以了.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询