Recurity.Swf.BitmapData.BitmapData C# (CSharp) 메소드

BitmapData() 공개 메소드

The BITMAPDATA structure contains image data. This structure is compressed as a single block of data.
public BitmapData ( byte InitialVersion ) : System
InitialVersion byte The version of the Swf file using this object.
리턴 System
        public BitmapData(byte InitialVersion)
            : base(InitialVersion)
        {
            this._bitmapPixelData = new List<Rgb>();
        }