Quantcast
Channel: openFrameworks - Latest posts
Viewing all articles
Browse latest Browse all 40524

ofFile Binary Mode

$
0
0

try using read instead of get. get is meant to be used to read strings and it'll stop after the first breakline: http://www.cplusplus.com/reference/istream/istream/get/

another possibility is to use ofBuffer to read the whole file to memory and then just iterate it in memory which will be faster even if it uses more memory but unless the file is too big it's probably worth it:

ofFile file(path_to_some_png, ofFile::ReadOnly, true);
ofBuffer buffer(file);
for (int i = 0; i < CHECKSUM_BLOCK_SIZE; i++) {
    cout << (unsigned)buffer.getData()[i] << endl;
}

Viewing all articles
Browse latest Browse all 40524

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>