Recurity.Swf.AlphaBitmapData.Write C# (CSharp) 메소드

Write() 공개 메소드

Writes this object back to a stream.
public Write ( Stream output ) : void
output Stream The stream to write to.
리턴 void
        public override void Write( Stream output )
        {
            for ( int i = 0; i < this._bitmapPixelData.Count; i++ )
            {
                this._bitmapPixelData[ i ].Write( output );
            }
        }