Click or drag to resize

ColorSRGB Structure

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

Namespace:  Zivid.NET
Assembly:  ZividCoreNET (in ZividCoreNET.dll) Version: 0.0.0.0
Syntax
public struct ColorSRGB

The ColorSRGB 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 r, g, b, a, and each member is represented as an uint8_t. The members have values from 0 to 255. This type differs from ColorRGBA only in that it is intended to use with color values in the sRGB color space.
See Also