我有麻烦了。如何在 C# 中使用位图类读取 1MB .tif 文件,并且必须根据 XY 坐标显示此 .tif 图像的像素值。我搜索了谷歌很多,但还没有找到任何答案。
string imgPath;
imgPath = @"C:\Documents and Settings\shree\Desktop\2012.06.09.15.35.42.2320.tif";
Bitmap img;
img = new Bitmap(imgPath, true);
MessageBox.Show(Here i have to show pixel value of this .tif image on the basis of X Y coordinates.);