BitMiracle.LibTiff.Classic.Tiff.GetB C# (CSharp) Method

GetB() public static method

Gets the B component from ABGR value returned by ReadRGBAImage.
public static GetB ( int abgr ) : int
abgr int The ABGR value.
return int
        public static int GetB(int abgr)
        {
            return ((abgr >> 16) & 0xff);
        }
Tiff