| AWARE [SYSTEMS] | Imaging expertise for the Delphi developer | |||||||
![]() |
TIFF and LibTiff Mailing List Archive | |||||||
LibTiff Mailing List
TIFF and LibTiff Mailing List Archive Contact
The TIFF Mailing List Homepage |
Thread2005.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. |
|||||||