2fast4you87
Erfahrenes Mitglied
Code:
ifstream in("test.jpg", ios::in | ios::binary);
ofstream out("test.hex");
if (!in.is_open() || !out.is_open()) return 1;
out << hex << setfill('0');
char c;
while (out && in.get(c)) {
out << setw(2) << static_cast<int>(c);
}
out.close();
also das funktioniert jetzt auch nicht mehr ...