已知一帧图像的数据,怎么添加文件头,成为bmp呢?
1个回答
展开全部
给你一段c++代码吧, 我自己写的, 本质就是保存一个文件而已
ofs_ << 'B';
ofs_ << 'M';
char temp = 0;
for(int i = 0; i < 8; i++)
ofs_ << temp;
ofs_ << '6';
for(int i = 0; i < 3; i++)
ofs_ << temp;
ofs_ << '(';
for(int i = 0; i < 3; i++)
ofs_ << temp;
char* widthch;
char* heigthch;
widthch = (char*)(&width_);
heigthch = (char*)(&heigth_);
for(int i = 0; i < 4; i++)
ofs_ << widthch[i];
for(int i = 0; i < 4; i++)
ofs_ << heigthch[i];
temp = 1;
ofs_ << temp;
temp = 0;
ofs_ << temp;
temp = 1;
temp = 24;
ofs_ << temp;
temp = 0;
for(int i = 0; i < 4; i++)
ofs_ << temp;
ofs_ << temp;
for(int i = 0; i < 20; i++)
ofs_ << temp;
for(size_t i = 0; i < bmpInfo_.size(); i++)
ofs_ << bmpInfo_[i];
ofs_.close();
ofs_ << 'B';
ofs_ << 'M';
char temp = 0;
for(int i = 0; i < 8; i++)
ofs_ << temp;
ofs_ << '6';
for(int i = 0; i < 3; i++)
ofs_ << temp;
ofs_ << '(';
for(int i = 0; i < 3; i++)
ofs_ << temp;
char* widthch;
char* heigthch;
widthch = (char*)(&width_);
heigthch = (char*)(&heigth_);
for(int i = 0; i < 4; i++)
ofs_ << widthch[i];
for(int i = 0; i < 4; i++)
ofs_ << heigthch[i];
temp = 1;
ofs_ << temp;
temp = 0;
ofs_ << temp;
temp = 1;
temp = 24;
ofs_ << temp;
temp = 0;
for(int i = 0; i < 4; i++)
ofs_ << temp;
ofs_ << temp;
for(int i = 0; i < 20; i++)
ofs_ << temp;
for(size_t i = 0; i < bmpInfo_.size(); i++)
ofs_ << bmpInfo_[i];
ofs_.close();
追问
如果只知道图像的数据,能不能用MFC把图像显示出来呢??
追答
用bitblt这套api就可以
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询