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

GetA() public static method

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