- 论坛徽章:
- 0
|
我将file1中(为16进制)转换成二进制然后存入file2,将file2的后缀名改为.jpg。以图片格式打开无法显示。求指教!!
源码:
#include <fstream>
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
string str="";
char ch;
ifstream file1;
file1.open("1.txt",ios_base::in);
if(!file1.is_open())
{
cout<<"cuohu"<<endl;
return -1;
}
while(file1.get(ch))
{
int c[4]={0};
//cout<<ch<<endl;
if(ch>='0'&&ch<='9')
{
c[3]=atoi(&ch)%2;
c[2]=(atoi(&ch)/2)%2;
c[1]=((atoi(&ch)/2)/2)%2;
c[0]=(((atoi(&ch)/2)/2)/2)%2;
}
else
{
int j=ch-'a'+10;
c[3]=j%2;
c[2]=(j/2)%2;
c[1]=((j/2)/2)%2;
c[0]=(((j/2)/2)/2)%2;
}
char buff[10];
for(int i=0;i<4;++i)
{
_itoa(c[i],buff,10);
str.append(buff);
}
}
ofstream file2;
file2.open("ll.jpg",ios_base: ut);
if(!file2.is_open())
{
cout<<"ERROR"<<endl;
return -1;
}
file2<<str.c_str();
file1.close();
file2.close();
return 0;
}
运行环境vc6.0 1.txt文件中为16进制 转换后存入ll.jpg中 但是图片无法显示。 |
|