vote up 0 vote down star

I've written a program which opens a bmp file and treats it as a character file and performs run length encoding on it. It produces a valid compressed encoding file, which I read again to perform the decoding.

When i'd made the application i was using Fedora and it ran perfectly fine. Now i'm running it on ubuntu and it refuses to work.

Any idea what is wrong? I fear it has to do with the encoding.

flag
Have you tried re-compiling it on Ubuntu or did you just copy the binary across? – karim79 Mar 26 at 9:08
i tried both ways none of them worked.. – Anirudh Goel Mar 26 at 9:11
That should be something trivial. Like signed/unsigned char by default. Why treat a binary file as a charecter file in the first place? – sharptooth Mar 26 at 9:16
How else i can treat the data if not in char? I need to find the continous occurance of a character. What data type may i compare if i read in binary mode? – Anirudh Goel Mar 26 at 9:20
That's not the problem of the data type, but how you work with it. Some code snippets would be helpful. – sharptooth Mar 26 at 9:22
show 10 more comments

1 Answer

vote up 1 vote down

I would first and foremost suggest using a source code debugger to find the problem.

Possible causes include using different compilers on the different systems, which might do different things with, for example, packing structs (e.g., BITMAPFILEHEADER). You also might have different CPU architectures on the two systems (64- vs. 32-bit).

You can also use a hex editor (e.g., XVI32) to examine the differences between BMP files generated by the two versions of your program.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.