#include <iostream>
#include <thread>
#include <fstream>
using namespace std;
int main() {
// 1. 打开图片文件
ifstream is("/home/mrlong/桌面/1.jpeg", ifstream::in | ios::binary);
// 2. 计算图片长度
is.seekg(0, is.end);
int length = is.tellg();
cout << length << endl;
is.seekg(0, is.beg);
// 3. 创建内存缓存区
char *buffer = new char[length];
// 4. 读取图片
is.read(buffer, length);
//二、另存为 223.jpg
std::string strFile;
for (size_t i = 0; i < length; i++) {
strFile += buffer[i];
}
//1.打开保存文件,没有自动创建
ofstream fout("/home/mrlong/桌面/21.jpeg", ios::binary);
if (!fout)
return 0;
if (!fout) {
cout << "文件不能打开" << endl;
} else {
//2.输出到磁盘文件
cout << "文件大小:" << strFile.size() << endl;
fout.write(strFile.c_str(), strFile.size());
fout.close();
}
delete[] buffer;
buffer = NULL;
return 0;
}
c++ 读写文件
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1. 摘要 BMP是英文Bitmap(位图)的简写,它是Windows操作系统中的标准图像文件格式,能够被多种...
- 在程序员的开发生涯中,读写配置文件必不可少。 配置文件有利于我们灵活配置工程,解决大量重复劳动,也方便调试。 配置...