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
October 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.10.31 01:34 "Reading Photoshop Proprietary Tag 37724", by <50295@web.de>
2006.10.31 05:12 "Re: Reading Photoshop Proprietary Tag 37724", by Chris Cox
2006.10.31 17:55 "Re: Reading Photoshop Proprietary Tag 37724", by <50295@web.de>
2006.10.31 19:46 "Re: Reading Photoshop Proprietary Tag 37724", by Chris Cox
2006.11.01 17:47 "Re: Reading Photoshop Proprietary Tag 37724", by Phil Harvey
2006.11.01 17:59 "Re: Reading Photoshop Proprietary Tag 37724", by Bob Friesenhahn
2006.11.01 19:02 "Re: Reading Photoshop Proprietary Tag 37724", by Phil Harvey
2006.11.02 21:21 "Re: Reading Photoshop Proprietary Tag 37724", by <50295@web.de>
2006.11.02 21:53 "Re: Reading Photoshop Proprietary Tag 37724", by Toby Thain
2006.11.03 17:35 "Re: Reading Photoshop Proprietary Tag 37724", by <50295@web.de>
2006.11.03 18:01 "Re: Reading Photoshop Proprietary Tag 37724", by Toby Thain
2006.11.03 19:09 "Re: Reading Photoshop Proprietary Tag 37724", by <50295@web.de>
2006.11.03 19:27 "Re: Reading Photoshop Proprietary Tag 37724", by Toby Thain
2006.11.03 21:34 "Re: Reading Photoshop Proprietary Tag 37724", by <50295@web.de>

2006.10.31 01:34 "Reading Photoshop Proprietary Tag 37724", by <50295@web.de>

Hello -

New LibTIFF programmer here, I'm trying to read the Photoshop Tag 37724 
in order to get at Image Layer data. Here's my snip of my attempt:

	uint16 data = 0;
	void*  count;
	TIFF* tiff = TIFFOpen("psdTIFF_File.tif", "r");

	TIFFGetField(tiff, 37724, &data, &count);
	printf("%d\n", data);

	TIFFClose(tiff);

The result: 27080 . The question now is, I'm not quite sure how to 
proceed from here. Hints please anyone?

Thanks

- Olumide