logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

TIFFCustomTagList - returns information about the custom tag list

Author

       LibTIFF contributors

Description

TIFFGetTagListCount() returns the number of entries in the custom tag list.

       TIFFGetTagListEntry()  returns the tag number of the (n.th - 1) entry within the custom tag list.  If the
       tag_index is larger or equal to the number of entries in the  tag  list  0xFFFFFFFF  (=(uint32_t(-1))  is
       returned.

Diagnostics

       none

Name

       TIFFCustomTagList - returns information about the custom tag list

Note

       The  known  tags  to  libtiff are define as 'named' tags and a lot of them as custom tags. The custom tag
       definitions are handled in an internal custom tag list. This list can also  be  extended  by  adding  tag
       definitions to that list, so that libtiff is aware of those tags.  See DefiningApplicationTags

See Also

libtiff (3tiff), TIFFOpen  (3tiff), TIFFError (3tiff)

Synopsis

          #include <tiffio.h>

       intTIFFGetTagListCount(TIFF*tif)uint32_tTIFFGetTagListEntry(TIFF*tif,inttag_index)

See Also