:: com :: sun :: star :: rendering ::

struct FloatingPointBitmapLayout
Usage Restrictions
not published
Description
This structure describes the memory layout of a bitmap having floating point color channels.

This structure collects all necessary information to describe the memory layout of a bitmap having floating point color channels

Since
OpenOffice 2.0.0

Elements' Summary
ScanLines Number of scanlines for this bitmap.  
ScanLineBytes Number of data bytes per scanline.  
ScanLineStride Byte offset between the start of two consecutive scanlines.  
PlaneStride Byte offset between the start of two consecutive planes.  
NumComponents Number of color components per pixel.  
Endianness Endianness of the pixel values. This value must be one of the Endianness constants  
Format Format type of this bitmap.  
Elements' Details
ScanLines
long ScanLines;
Description
Number of scanlines for this bitmap.
ScanLineBytes
long ScanLineBytes;
Description
Number of data bytes per scanline.
ScanLineStride
long ScanLineStride;
Description
Byte offset between the start of two consecutive scanlines.
PlaneStride
long PlaneStride;
Description
Byte offset between the start of two consecutive planes.
NumComponents
long NumComponents;
Description
Number of color components per pixel.
Endianness
byte Endianness;
Description
Endianness of the pixel values. This value must be one of the Endianness constants
Format
byte Format;
Description
Format type of this bitmap.

This value must be one of the FloatingPointBitmapFormat constants.

Top of Page