AWARE [SYSTEMS] Imaging expertise for the Delphi developer
AWare Systems, Imaging expertise for the Delphi developer, Home TIFF and LibTiff Mailing List Archive

LibTiff Mailing List

TIFF and LibTiff Mailing List Archive
November 2005

Previous Thread
Next Thread

Previous by Thread
Next by Thread

Previous by Date
Next by Date

Contact

The TIFF Mailing List Homepage
This list is run by Frank Warmerdam
Archive maintained by AWare Systems



Valid HTML 4.01!



Thread

2005.11.03 18:52 "Unresolved external '_TIFFDefaultStripSize' referenced from C:\..\file.obj", by Letícia A. Ferreira
2005.11.04 07:35 "Re: Unresolved external '_TIFFDefaultStripSize' referenced from C:\..\file.obj", by Eugene Shebeko

2005.11.04 07:35 "Re: Unresolved external '_TIFFDefaultStripSize' referenced from C:\..\file.obj", by Eugene Shebeko

> I´m having this problem after building my project. I want to get a bitmap 
> file and convert it into a tiff file, but the compiler (bcc5.0) returned me 
> these error mesaages:

It is not a problem of libtiff.

1.
Maybe problem because libtiff builded using MSVC and you try to used
under BCC.

The best solution is to rebuild libtiff under BCC.
If libtiff builded as static library it is the only one solution.
In case of dll it's guaranties that libtiff and you project will use
same memory managment.

If you don't like to rebuild libtiff you could use coff2omf utility
from BCC distributive.

Like this:
link /lib /convert libpokr.lib
coff2omf -v libpokr.lib libpokr1.lib
move libpokr1.lib libpokr.lib

But it work only for dynamic libraries and you have two different
memory managment.

2. Try to add lib in your .lib file directly. You can add library files
to project like .cpp files.