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

GetR() public static method

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