我有麻烦了。如何在 C# 中使用位图类读取 1MB .tif 文件。我使用了下面的代码,但出现错误“内存不足”。我搜索了谷歌很多但还没有找到任何答案。
string imgPath;
imgPath = @"C:\Documents and Settings\shree\Desktop\2012.06.09.15.35.42.2320.tif";
Image newImage = Image.FromFile(imgPath);
Bitmap img;
img = new Bitmap(imgPath, true);
MessageBox.Show("Width: "+ img.Width + " Height: " + img.Height);