ImageEn, unit iexBitmaps

TIOParams.TIFF_PlanarConf

TIOParams.TIFF_PlanarConf

Declaration

property TIFF_PlanarConf: Integer;

Description

Specifies the Planar configuration of a TIFF image:
Value Description
1 The component values for each pixel are stored contiguously (e.g. RGBRGBRGB...)
2 The components are stored in separate component planes (e.g. RRRRRR...GGGGGGG.....BBBBBB)

Note: If you are using a TIEMultiBitmap or TImageEnMView, you can use DuplicateCompressionInfo to propagate the parameter to all frames

Default: 1

Example

// Set tiff planar configuration
ImageEnView1.IO.Params.TIFF_PlanarConf := 2;

See Also

DuplicateCompressionInfo