Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plattformunabhängigkeit von fopen() und fwrite() #1

Closed
braeuert opened this issue Apr 9, 2017 · 1 comment
Closed

Plattformunabhängigkeit von fopen() und fwrite() #1

braeuert opened this issue Apr 9, 2017 · 1 comment

Comments

@braeuert
Copy link

braeuert commented Apr 9, 2017

Hallo,

beim Programmieren mit der Bibliothek ist mir unter Windows immer wieder ein Fehler beim Einlesen der Bitmap-Dateien untergekommen. Unter Linux funktionierte beim Testprogramm bislang problemfrei.
Gemäß http://stackoverflow.com/questions/3187693/fread-ftell-apparently-broken-under-windows-works-fine-under-linux funktioniert das Laden und Speichern von Bitmap-Files unter Windows nicht, ohne zusätzlich zum r-/w-Flag noch ein 'b' für "binary" zu setzen.

Ergo könnte man in der Zeile 843 sowie in Zeile 1571 der bitmap.c die Flags erweitern:

843   FILE* file = fopen(filePath, "rb");
/* ... */
1571  FILE* file = fopen(filePath, "wb+");

Viele Grüße

~braeuert

@JayTee42
Copy link
Owner

JayTee42 commented Apr 16, 2017

Ja, 'b' ist hier generell eine gute Idee. Erledigt in 296afed, vielen Dank :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants