blob: 85d580ae6d5d90727f304af2c4e4d1453acc2777 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
TIFFFieldName
=============
Synopsis
--------
.. highlight:: c
::
#include <tiffio.h>
.. c:function:: const char* TIFFFieldName(const TIFFField* fip)
Description
-----------
:c:func:`TIFFFieldName` returns the textual name for a TIFF field.
*fip* is a field information pointer previously returned by
:c:func:`TIFFFindField`, :c:func:`TIFFFieldWithTag`,
or :c:func:`TIFFFieldWithName`.
Return values
-------------
:c:func:`TIFFFieldName` returns a constant C string.
See also
--------
:doc:`libtiff` (3tiff)
|