我正在制作一个 C++ 程序,以便能够打开 .bmp 图像,然后能够将其放入 2D 数组中。现在我有这样的代码:
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include "Image.h"
using namespace std;
struct colour{
int red;
int green;
int blue;
};
Image::Image(string location){
fstream stream;
string tempStr;
stringstream strstr;
stream.open(location);
string completeStr;
while(!stream.eof()){
getline(stream, tempStr);
completeStr.append(tempStr);
}
cout << endl << completeStr;
Image::length = completeStr[0x13]*256 + completeStr[0x12];
Image::width = completeStr[0x17]*256 + completeStr[0x16];
cout << Image::length;
cout << Image::width;
cout << completeStr.length();
int hexInt;
int x = 0x36;
while(x < completeStr.length()){
strstr << noskipws << completeStr[x];
cout << x << ": ";
hexInt = strstr.get();
cout << hex << hexInt << " ";
if((x + 1)%3 == 0){
cout << endl;
}
x++;
}
}
现在,如果我在我的 256x256 测试文件上运行它,它会打印得很好,直到它到达 0x36E,它给出一个错误/不会更进一步。发生这种情况是因为completeStr字符串没有接收到 bmp 文件中的所有数据。为什么无法读取 bmp 文件中的所有行?