看板 C_and_CPP 關於我們 聯絡資訊
※ 引述《StarRoad (知道越多了解越少)》之銘言: 原文恕刪 圖不會很大的話,我會這樣讀 #include <iterator> #include <vector> #include <algorithm> #include <fstream> typedef std::vector< char > ByteArray; int main() { using namespace std; ByteArray data; ifstream fin( "bmp", ios::binary ); copy( istreambuf_iterator< char >( fin ), istreambuf_iterator< char >(), back_inserter( data ) ); fin.close(); // do something ofstream fout( "tmp", ios::binary ); copy( data.begin(), data.end(), ostreambuf_iterator< char >( fout ) ); fout.close(); return 0; } -- 自High筆記(半荒廢) http://legnaleurc.blogspot.com/ -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 123.205.248.119
StarRoad:謝謝 我會參考看看 10/13 18:51