Recurity.Swf.TagHandler.DefineFont.Write C# (CSharp) Method

Write() public method

public Write ( Stream output ) : void
output Stream
return void
        public override void Write(Stream output)
        {
            BinaryWriter bw = new BinaryWriter(output);

            this.WriteTagHeader(output);

            bw.Write(this._fontID);

            for (int i = 0; i < this._offsetTable.Length; i++ )
            {
                bw.Write(this._offsetTable[i]);
            }

            for (int i = 0; i < this._glyphShapeTable.Length; i++)
            {
                this._glyphShapeTable[i].Write(output);
            }
        }