I misinterpreted the outcome of the tests. The "Orientation" tag isn't missing. To the contrary FreeImage adds an "Orientation" tag when it saves a TIFF file. I don't consider this a bug. Everything works as expected.
2012-03-18 08:00:26 PDT in FreeImage
Thanks, the bug fix in CSV works well. But now the orientation information has vanished. FreeImage used to show 'top, left side' as orientation of my test tiff. Now it doesn't print any orientation information.
2012-03-11 09:33:55 PDT in FreeImage
Herve has already fixed the issue in CVS, see https://sourceforge.net/tracker/?func=detail&atid=111504&aid=3496036&group_id=11504.
2012-03-07 11:37:38 PST in FreeImage
The code in CVS compiles and works fine except for issue #3498868. G3/G4 compressed TIFF images are ok, too. Thanks again!
2012-03-07 11:36:15 PST in FreeImage
Some metadata values have a different represention. For example StripByteCounts and StripOffsets used to be a string with the decimal representation. Now they contain the data as bytes. expected in 3.15.1: StripByteCounts: "6697" StripOffsets: "8" since 3.15.3 CVS: StripByteCounts: ")\x1a" StripOffsets: "\x08" >>> >>>...
2012-03-07 11:28:08 PST in FreeImage
Thanks, the test suite is now passing. I'll test your fix with our app next week and contact you again.
2012-03-03 12:43:42 PST in FreeImage
FreeImage 3.5.2 doesn't work at all on 64bit Unix. It segfaults with an assertion message: TIFFClientOpen: Assertion `sizeof(tmsize_t)==sizeof(void*) This is another severe regression. The bug is caused by an erroneous tiffconf.h. The file contains configuration values that are only valid for Windows. For example TIFF_SSIZE_T is defined as signed int for all Unix platforms although...
2012-03-01 09:34:09 PST in FreeImage
See https://sourceforge.net/projects/freeimage/forums/forum/36111/topic/5077920 I'm having the same issue on Linux. After I renamed the file to tif_stream.cpp and changed the reference in Makefile.srcs FreeImage compiled on Linux. This is a severe regression and show stopper on all Unix platforms.
2012-03-01 09:26:18 PST in FreeImage