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