Imager.sPixel._GetAlpha C# (CSharp) 메소드

_GetAlpha() 개인적인 정적인 메소드

Gets the value for alpha, hopefully the compiler inlines that.
private static _GetAlpha ( uint rgbBytes ) : byte
rgbBytes uint The pixel value.
리턴 byte
        private static byte _GetAlpha(uint rgbBytes)
        {
            return ((byte)(rgbBytes >> 24));
        }