RasterFormat ============ .. py:class:: ansys.stk.core.graphics.RasterFormat IntEnum .. py:currentmodule:: RasterFormat Overview -------- .. tab-set:: .. tab-item:: Members .. list-table:: :header-rows: 0 :widths: auto * - :py:attr:`~RED` - The format of the raster is a single band consisting of red values. * - :py:attr:`~GREEN` - The format of the raster is a single band consisting of green values. * - :py:attr:`~BLUE` - The format of the raster is a single band consisting of blue values. * - :py:attr:`~ALPHA` - The format of the raster is a single band consisting of alpha values. * - :py:attr:`~RGB` - The format of the raster is three bands consisting of red, green, and blue values. * - :py:attr:`~BGR` - The format of the raster is three bands consisting of blue, green, and red values. * - :py:attr:`~RGBA` - The format of the raster is four bands consisting of red, green, blue, and alpha values. * - :py:attr:`~BGRA` - The format of the raster is four bands consisting of blue, green, red, and alpha values. * - :py:attr:`~LUMINANCE` - The format of the raster is a single band consisting of luminance values. * - :py:attr:`~LUMINANCE_ALPHA` - The format of the raster is two bands consisting of luminance and alpha values. Import detail ------------- .. code-block:: python from ansys.stk.core.graphics import RasterFormat