enum P1::ImageSdk::BitmapFormat::PredefinedBitmapFormat

Overview

Supported RGB bitmap formats. More…

#include <P1ImageBitmapImage.hpp>

enum PredefinedBitmapFormat
{
    Unknown    = 0,
    Rgb24      = 1,
    Rgb48      = 2,
    Bgr24      = 3,
    Argb32     = 4,
    Grey8      = 5,
    Grey16     = 6,
    Argb64     = 7,
    Bayer16    = 10,
    Float32    = 11,
    Customized = 9999,
};

Detailed Documentation

Supported RGB bitmap formats.

Enum Values

Rgb24

Each channel is 1 bytes, 8-8-8 RGB

Rgb48

Each channel is 2 bytes, 16-16-16 RGB

Bgr24

Each channel is 1 bytes, 8-8-8 BGR

Argb32

Each channel is 1 bytes, 8-8-8-8 ARGB

Grey8

Each channel is 1 byte, 8 Greytone

Grey16

Each channel is 2 bytes, 16 Greytone

Argb64

Each channel is 2 bytes, 16-16-16-16 ARGB

Bayer16

Each channel is 2 bytes, in Bayer layout

Float32

Each channel is 4 bytes, in floating point format