BitMiracle.LibTiff.Classic.Tiff.GetA C# (CSharp) Méthode

GetA() public static méthode

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