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 2008

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

2008.11.21 20:18 "Patch Legacy App for Updated libtiff?", by Kevin Myers
2008.11.21 20:29 "Re: Patch Legacy App for Updated libtiff?", by Kevin Myers
2008.11.21 20:45 "Re: Patch Legacy App for Updated libtiff?", by Frank Warmerdam
2008.11.21 21:33 "Re: Patch Legacy App for Updated libtiff?", by Kevin Myers

2008.11.21 21:33 "Re: Patch Legacy App for Updated libtiff?", by Kevin Myers

> The entry point WriteScanLine (if exactly spelled like that) does not
> exist in libtiff, so it stands to reason it was a local modification.
> If you don't have the source for the locally modified libtiff then I
> think you are basically hosed.
>
> Good luck,

Well duh, I should have noticed that!!!

After some further poking around the dll files using (gasp) notepad, based 
on all of the entry point names that I see, it appears that the dll used by 
my legacy app is *highly* customized.  Looks like they might have started 
with some older version of libtiff, stripped out stuff they didn't think was 
necessary for their app, and added some of their own gunk.  Here are 
possible entry points that I see which look like they might have come from 
some version of libtiff:

TIFFAdvanceDirectory
TIFFUnlinkDirectory
TIFFOpen
TIFFReadRawStrip
TIFFFillStrip
TIFFReadRawTile
TIFFFillTile
TIFFReadBufferSetup
TIFFWriteScanline
TIFFWriteEncodedStrip
TIFFWriteRawStrip
TIFFWriteEncodedTile
TIFFWriteRawTile
TIFFWriteBufferSetup
TIFFAppendToStrip

In any case, I suppose that I'm still hosed, right?  I don't suppose there 
is any reasonable way to force calls to these routines in the legacy DLL to 
go to another dll instead, is there?

:-(