程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c 文件操作-c圖片文件讀取問題,坐等大神

c 文件操作-c圖片文件讀取問題,坐等大神

編輯:編程綜合問答
c圖片文件讀取問題,坐等大神
enter code here

void fileCopy( const char * targetFilePath, const char * toPlace ){

FILE * istream, * ostream;  // 
if(( istream = fopen( targetFilePath, "r" )) == NULL ){
    printf("文件不存在!");
    exit( 0 );
}
ostream = fopen( toPlace, "w");
char ch;
while( (ch=fgetc(istream)) != EOF ){
    cout<<ch<<"  ";
    fputc( ch, ostream );
}
fclose( ostream );

}

void main( ){
// const char * from = "D://a.jpg";
// const char * to = "D://b.jpg";
const char * from = "D://data.txt";
const char * to = "D://b.txt";
fileCopy( from, to );
cout<<"完成!"<<endl;
}
為什麼復制txt文件讀取沒問題,但是復制圖片文件有問題,望大神求解?

最佳回答:


圖片一般是二進制的,用fread/fwrite接口,並用二進制讀寫模式就可以了。fgetc/fputc更多的是處理文本的。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved