GetBValue function

int GetBValue(
  1. int rgb
)

Retrieves an intensity value for the blue component of a red, green, blue (RGB) value.

Implementation

//
// #define GetBValue(rgb)      (LOBYTE((rgb)>>16))
int GetBValue(int rgb) => LOBYTE(rgb >> 16);