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
January 2006

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

2006.01.10 16:19 "Problem closing TFF file : First Chance exception", by <tub95@wanadoo.fr>
2006.01.10 16:34 "Re: Problem closing TFF file : First Chance exception", by Bernie Pallek
2006.01.11 08:57 "Re: Problem closing TFF file : First Chance exception", by <tub95@wanadoo.fr>
2006.01.11 14:58 "Re: Problem closing TFF file : First Chance exception", by Bernie Pallek
2006.01.11 16:30 "Re: Problem closing TFF file : First Chance exception", by Bernie Pallek
2006.01.10 16:46 "Re: Problem closing TFF file : First Chance exception", by Joris Van Damme
2006.01.10 16:51 "Re: Problem closing TFF file : First Chance exception", by Bernie Pallek
2006.01.11 08:48 "Re: Problem closing TFF file : First Chance exception", by <tub95@wanadoo.fr>
2006.01.16 11:02 "Re: Problem closing TFF file : First Chance exception", by <tub95@wanadoo.fr>

2006.01.11 08:57 "Re: Problem closing TFF file : First Chance exception", by <tub95@wanadoo.fr>

Hello,

I think it's not the problem because my tiff file is correctly open.
It's correctly open because i can do for example (to know the tiff file
resolution) :
 
float resolution;
TIFFGetField(in,TIFFTAG_YRESOLUTION,&resolution);

I obtain the good result (196) in "resolution"

Furthermore, i added your example :

TIFF *in;
in = TIFFOpen("temp.tif","r");
if (!in)
    exit(1);

TIFFClose(in);

When i debug, it's specified that TIFF pointer "in" is not NULL and i have
the same error on the instruction TIFFClose : First-Chance exception in
test.exe (NTDLL.DLL) : 0x0000008 : Invalid Handle

Have you an other idea ?

Thanks,
Thibaut