SwfDotNet.IO.Tags.Types.AlphaBitmapData.GetSizeOf C# (CSharp) 메소드

GetSizeOf() 공개 메소드

Gets the size of.
public GetSizeOf ( ) : int
리턴 int
        public int GetSizeOf()
        {
            int res = 0;
            if (bitmapPixelData != null)
                res += bitmapPixelData.Length * 4;
            return res;
        }