Click or drag to resize

ColorBGRA_SRGB Structure

Color with 8-bit blue, green, red and alpha channels in the sRGB color space

Namespace:  Zivid.NET
Assembly:  ZividCoreNET (in ZividCoreNET.dll) Version: 2.15.0.0
Syntax
public struct ColorBGRA_SRGB

The ColorBGRA_SRGB type exposes the following members.

Fields
  NameDescription
Public fielda
Public fieldb
Public fieldg
Public fieldr
Top
Remarks
The sRGB color space is suitable for showing an image on a display for human viewing. It is easier to see details in darker areas of an image in sRGB than in linear RGB, as more of the dynamic range is dedicated to darker colors. This format is assumed by default by most monitors and should be used when displaying an image. The order of the members is b, g, r, a, and each member is represented as an uint8_t. The members have values from 0 to 255. This type differs from [D:Zivid.ColorRGBA_SRGB] only in the order of the channels (BGRA vs. RGBA).
See Also