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.10 10:44 "Calculate Offset and can't read ASCII", by Thomas Oldenkott
2005.11.13 16:49 "Re: Calculate Offset and can't read ASCII", by Andrey Kiselev
2005.11.18 11:58 "Re: Calculate Offset and can't read ASCII", by Thomas Oldenkott
2005.11.23 21:55 "Re: Calculate Offset and can't read ASCII", by Andrey Kiselev
2005.12.04 17:32 "Re: Calculate Offset and can't read ASCII", by Joris Van Damme

2005.11.10 10:44 "Calculate Offset and can't read ASCII", by Thomas Oldenkott

Hello,
 
I have two problems. 

1) I need a way to calculate the offset of an image. I want to export it in
a csv-File. Is there a tag? How do I make this?

2) By reading tags in an ASCII format (for example TIFFTAG_DATETIME) to an
char array I get crazy values.

    Where is the problem?
 
    Example:
    char IMAGEDATETIME[50];
    TIFFGetField(tif,306,&IMAGEDATETIME);
    printf("\nIMAGEDATETIME= %s", IMAGEDATETIME);
    TIFFSetField(out,306,IMAGEDATETIME);
 
 
 
Greetings
 
TOM