我正在解析一个位图标题(只是为了好玩)而且我在将数据放入结构体时遇到了麻烦。这是我的代码:
#include <iostream>
#include <fstream>
using namespace std;
struct bmp_header {
char16_t id;
int size;
char16_t reserved1;
char16_t reserved2;
int offset_to_pxl_array;
} bmp_header;
int main(int argc, char *argv[]) {
if (argc < 2) {
cout << "No image file specified." << endl;
return -1;
}
ifstream file(argv[1], ios::in|ios::binary|ios::ate);
streampos f_size = file.tellg();
char *memblock;
if (!file.is_open()) {
cout << "Error reading file." << endl;
return -1;
}
memblock = new char[f_size];
//Read whole file
file.seekg(0, ios::beg);
file.read(memblock, f_size);
file.close();
//Parse header
//HOW TO PUT FIRST 14 BYTES OF memblock INTO bmp_header?
//Output file
for(int x = 0; x < f_size; x++) {
cout << memblock[x];
if (x % 20 == 0)
cout << endl;
}
cout << "End of file." << endl;
delete[] memblock;
return 0;
}
如何将 memblock 的前14个元素放入 bmp_header ?我一直试图在网上搜索一下,但对于这么简单的问题,大多数解决方案似乎有点复杂。
答案 0 :(得分:0)
最简单的方法是使用std::ifstream
及其read
成员函数:
std::ifstream in("input.bmp");
bmp_header hdr;
in.read(reinterpret_cast<char *>(&hdr), sizeof(bmp_header));
但有一点需要注意:编译器将align bmp_header
成员变量。因此,你必须防止这种情况。例如。在gcc
中,您可以通过__attribute__((packed))
:
struct bmp_header {
char16_t id;
int size;
char16_t reserved1;
char16_t reserved2;
int offset_to_pxl_array;
} __attribute__((packed));