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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
TIFFReadRGBAImage
=================
Synopsis
--------
.. highlight:: c
::
#include <tiffio.h>
.. c:macro:: TIFFGetR(abgr)
:c:expr:`((abgr) & 0xff)`
.. c:macro:: TIFFGetG(abgr)
:c:expr:`(((abgr) >> 8) & 0xff)`
.. c:macro:: TIFFGetB(abgr)
:c:expr:`(((abgr) >> 16) & 0xff)`
.. c:macro:: TIFFGetA(abgr)
:c:expr:`(((abgr) >> 24) & 0xff)`
.. c:function:: int TIFFReadRGBAImage(TIFF* tif, uint32_t width, uint32_t height, uint32_t* raster, int stopOnError)
.. c:function:: int TIFFReadRGBAImageOriented(TIFF* tif, uint32_t width, uint32_t height, uint32_t * raster, int orientation, int stopOnError)
Description
-----------
:c:func:`TIFFReadRGBAImage` reads a strip- or tile-based image into memory,
storing the result in the user supplied *raster*.
The raster is assumed to be an array of *width* × *height* 32-bit entries,
where *width* must be less than or equal to the width of the image
(*height* may be any non-zero size).
If the raster dimensions are smaller than the image, the image data is
cropped to the raster bounds.
If the raster height is greater than that of the image, then the image data
are placed in the lower part of the raster.
(Note that the raster is assume to be organized such that the pixel
at location (*x*, *y*) is *raster* [ *y* × *width* + *x* ];
with the raster origin in the lower-left hand corner.)
:c:func:`TIFFReadRGBAImageOriented` works like :c:func:`TIFFReadRGBAImage`
except that the user can specify the raster origin position with the
*orientation* parameter. Four orientations are supported:
* :c:macro:`ORIENTATION_TOPLEFT`: origin in top-left corner,
* :c:macro:`ORIENTATION_TOPRIGHT`: origin in top-right corner,
* :c:macro:`ORIENTATION_BOTLEFT`: origin in bottom-left corner
* :c:macro:`ORIENTATION_BOTRIGHT`: origin in bottom-right corner.
If you choose :c:macro:`ORIENTATION_BOTLEFT`, the result will be the same
as returned by the :c:func:`TIFFReadRGBAImage`.
Raster pixels are 8-bit packed red, green, blue, alpha samples.
The macros :c:macro:`TIFFGetR`, :c:macro:`TIFFGetG`, :c:macro:`TIFFGetB`,
and :c:macro:`TIFFGetA` should be used to access individual samples.
Images without Associated Alpha matting information have a constant
Alpha of 1.0 (255).
:c:func:`TIFFReadRGBAImage` converts non-8-bit images by scaling sample
values. Palette, grayscale, bilevel, CMYK, and YCbCr images are
converted to RGB transparently.
Raster pixels are returned uncorrected by any colorimetry information
present in the directory.
The parameter *stopOnError* specifies how to act if an error is
encountered while reading the image. If *stopOnError* is non-zero, then
an error will terminate the operation; otherwise :c:func:`TIFFReadRGBAImage`
will continue processing data until all the possible data in the
image have been requested.
Notes
-----
:c:func:`IFFReadRGBAImage` is just a wrapper around the more general
:doc:`TIFFRGBAImage` facilities.
For general notes see
:ref:`TIFFRGBImage notes <TIFFRGBAImage_Restriction_Notes>`.
Return values
-------------
1 is returned if the image was successfully read and converted.
Otherwise, 0 is returned if an error was encountered and
*stopOnError* is zero.
.. TODO: Specify, what the return value is if an error occurs and stopOnError was non-zero.
Diagnostics
-----------
All error messages are directed to the :c:func:`TIFFErrorExtR` routine.
``"Sorry, can not handle %d-bit pictures"``:
The image had ``BitsPerSample`` other than 1, 2, 4, 8, or 16.
``"Sorry, can not handle %d-channel images"``:
The image had ``SamplesPerPixel`` other than 1, 3, or 4.
``Missing needed "PhotometricInterpretation" tag``:
The image did not have a tag that describes how to display
the data.
``No "PhotometricInterpretation" tag, assuming RGB``:
The image was missing a tag that describes how to display it,
but because it has 3 or 4 samples/pixel, it is assumed to be
RGB.
``No "PhotometricInterpretation" tag, assuming min-is-black``:
The image was missing a tag that describes how to display it,
but because it has 1 sample/pixel, it is assumed to be a grayscale
or bilevel image.
``"No space for photometric conversion table"``:
There was insufficient memory for a table used to convert
image samples to 8-bit RGB.
``Missing required "Colormap" tag``:
A Palette image did not have a required ``Colormap`` tag.
``"No space for tile buffer"``:
There was insufficient memory to allocate an i/o buffer.
``"No space for strip buffer"``:
There was insufficient memory to allocate an i/o buffer.
``"Can not handle format"``:
The image has a format (combination of ``BitsPerSample``,
``SamplesPerPixel``, and ``PhotometricInterpretation``)
that :c:func:`TIFFReadRGBAImage` can not handle.
``"No space for B&W mapping table"``:
There was insufficient memory to allocate a table used to map
grayscale data to RGB.
``"No space for Palette mapping table"``:
There was insufficient memory to allocate a table used to map
data to 8-bit RGB.
See also
--------
:doc:`TIFFOpen` (3tiff),
:doc:`TIFFRGBAImage` (3tiff),
:doc:`TIFFReadRGBAStrip` (3tiff),
:doc:`TIFFReadRGBATile` (3tiff),
:doc:`libtiff` (3tiff)
|