多个文件合二为一

时间:2011-09-12 13:46:48

标签: c++ image binary file-format

我正在尝试创建自己的文件格式。我想存储图像文件 和该文件中的一些文字说明。 文件格式将是这样的:

image_file_size
image_data
desctiption_file_size
description_data

但没有'\ n'符号。 为此我正在使用std :: ios :: binary。这是一些代码, 描述该过程(它是草图,而不是最后一个变体): 写我的文件。

long long image_length, desctiption_length;

std::fstream m_out(output_file_path, std::ios::out |
std::ios::binary);
std::ifstream input_image(m_image_file_path.toUtf8().data());

input_image.seekg(0, std::ios::end);
image_length = input_image.tellg();
input_image.seekg(0, std::ios::beg);

// writing image length to output file
m_out.write( (const char *)&image_length, sizeof(long long) );

char *buffer = new char[image_length];
input.read(buffer, image_length);

// writing image to file
m_out.write(buffer, image_length);

// writing description file the same way
// ...

阅读我的文件。

std::fstream m_in(m_file_path.toUtf8().data(), std::ios::in );

long long xml_length, image_length;

m_in.seekg(0, std::ios::beg);
m_in.read((char *)&image_length, sizeof(long long));
m_in.seekg(sizeof(long long));

char *buffer = new char[image_length];
m_in.read(buffer, image_length );

std::fstream fs("E:\\Temp\\out.jpg");
fs.write(buffer, image_length);

现在图片(E:\ Temp \ out.jpg)坏了。我正在用十六进制看着它 编辑器,还有一些额外的位。

有人可以帮助我并告诉我我做错了吗?

1 个答案:

答案 0 :(得分:3)

由于您在任何地方存储和读取二进制数据,您应该以二进制模式打开并创建所有文件。

在写作部分:

std::ifstream input_image(m_image_file_path.toUtf8().data(), std::ios::in | std::ios::binary);

在阅读部分:

std::fstream m_in(m_file_path.toUtf8().data(), std::ios::in | std::ios::binary);

//...

std::fstream fs("E:\\Temp\\out.jpg", std::ios::out | std::ios::binary);