Я новичок в C ++ (переход с C #), поэтому я не совсем уверен, что здесь происходит.То, что я пытаюсь сделать, это прочитать изображение из файла и записать его в выходной файл, но всякий раз, когда я делаю, части файла кажутся поврежденными.
Я проверял данные в памятии это на самом деле совпадает, поэтому я считаю, что виновником должно быть что-то, что происходит с fwrite (), хотя это всегда может быть что-то, что я делаю неправильно.
Вот некоторые примеры данных: http://pastebin.com/x0eZin6K
И мой код:
// used to figure out if reading in one giant swoop has to do with corruption
int BlockSize = 0x200;
// Read the file data
unsigned char* data = new unsigned char[BlockSize];
// Create a new file
FILE* output = fopen(CStringA(outputFileName), "w+");
for (int i = 0; i < *fileSize; i += BlockSize)
{
if (*fileSize - i > BlockSize)
{
ZeroMemory(data, BlockSize);
fread(data, sizeof(unsigned char), BlockSize, file);
// Write out the data
fwrite(data, sizeof(unsigned char), BlockSize, output);
}
else
{
int tempSize = *fileSize - i;
ZeroMemory(data, tempSize);
fread(data, sizeof(unsigned char), tempSize, file);
// Write out the data
fwrite(data, sizeof(unsigned char), tempSize, output);
}
}
// Close the files, we're done with them
fclose(file);
fclose(output);
delete[] data;
delete fileSize;