0

我有麻烦了。如何在 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.);
4

1 回答 1

2

试试这个

string imgPath;
imgPath = @"C:\Documents and Settings\shree\Desktop\2012.06.09.15.35.42.2320.tif";

Bitmap img;
img = new Bitmap(imgPath, true);

Color pixelColor = img.GetPixel(50, 50); // 50, 50 or any "VALID" pixel in your bitmap

欲了解更多信息,请点击此处

于 2012-06-23T05:43:48.157 回答