| 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 |
Thread2003.01.15 20:11 "Re: IFD Location", by Dwight KellyOn Wed, 15 Jan 2003, scott wrote: > I'm building a TIF with LIBTIFF, and it places the directory after the > strip. I'd like to place it in the front of the file (behind the header). > I'm basically doing this: > TIFOpen () > TIFCreateDirectory () > TIFSetField () > TIFSetField () > ... > loop - TIFWriteScanLine () > TIFClose () remove TIFFCreateDirectory() and put TIFFWriteDirectory() before first TIFFWriteScanline() call. TIFFOpen () TIFFSetField () TIFFSetField () TIFFWriteDirectory() ... loop - TIFFWriteScanLine () TIFFClose () -- Dwight Kelly Apago, Inc. 4080 McGinnis Ferry Rd Suite 601 Alpharetta, GA 30005 voice:(770) 619-1884 fax:(770) 619-1885 email: dkelly@apago.com web: http://www.apago.com Download a free evaluation copy of the award winning PDF/X Checkup. Version 2.52 includes many new features including PDF/X Plus workflow checks! Free upgrade to registered users. http://www.apago.com/pdfxcheckup |
|||||||