Recurity.Swf.TagHandler.DefineBitsLossless2.Parse C# (CSharp) Method

Parse() protected method

protected Parse ( ) : void
return void
        protected override void Parse()
        {
            BinaryReader br = new BinaryReader(this._dataStream);

            this._characterID = br.ReadUInt16();
            this._bitmapFormat = br.ReadByte();
            this._bitmapWidth = br.ReadUInt16();
            this._bitmapHight = br.ReadUInt16();

            this._bitmapColorTableSize = br.ReadByte();
            this._compressedImageData = br.ReadBytes((Int32)(this._dataStream.Length - this._dataStream.Position));
        }