2006.10.31 01:34 "[Tiff] Reading Photoshop Proprietary Tag 37724", by Olumide

2006.10.31 05:12 "Re: [Tiff] Reading Photoshop Proprietary Tag 37724", by Chris Cox

Start by getting the Photoshop SDK and reading it.

Chris

On 10/30/06 5:34 PM, "Olumide" <50295@web.de> wrote:

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?