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

GetG() public static méthode

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