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.03 18:52 "Unresolved external '_TIFFDefaultStripSize' referenced from C:\..\file.obj", by Letícia A. Ferreira

Hi guys,

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:

[Linker Error] Unresolved external '_TIFFDefaultStripSize' referenced from   
C:\..\filebmptotiff.OBJ
[Linker Error] Unresolved external '_TIFFSetField' referenced from 
C:\..\filebmptotiff.OBJ
[Linker Error] Unresolved external '_TIFFWriteScanline' referenced from 
C:\..\filebmptotiff.OBJ
[Linker Error] Unresolved external '_TIFFWriteDirectory' referenced from 
C:\..\filebmptotiff.OBJ[Linker Error] Unresolved external '_TIFFOpen' 
referenced from C:\..\filebmptotiff.OBJ
[Linker Error] Unresolved external '_TIFFClose' referenced from 
C:\..\filebmptotiff.OBJ

I´ve already included libtiff.lib(vers 3.7.3) in my project using project 
options and also as below:

#include <vcl.h>
#pragma hdrstop
USERES("MCEToolRSPlus.res");
USEFORM("Intro.cpp", formMCETool);
USEFORM("aboutMCE.cpp", AboutBox);
USEFORM("QuestDialogAVI.cpp", OKBottomDlg);
USEUNIT("filebmptotiff.cpp");
USE("filebmptotiff.h", File);
USELIB("libtiff.lib");    //this line.

What can I do to solve this problem?? Does anyone have a clue?

Thanks for the help,


Letícia A. Ferreira