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

GetG() public static method

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