BitMiracle.LibTiff.Classic.Tiff.GetA C# (CSharp) Метод

GetA() публичный статический Метод

Gets the A component from ABGR value returned by ReadRGBAImage.
public static GetA ( int abgr ) : int
abgr int The ABGR value.
Результат int
        public static int GetA(int abgr)
        {
            return ((abgr >> 24) & 0xff);
        }
Tiff