Recurity.Swf.AlphaColorMapData.AlphaColorMapData C# (CSharp) Method

AlphaColorMapData() public method

The ALPHACOLORMAPDATA extends COLORMAPDATA by using RGBA

insteadf of RGB for the image data.

public AlphaColorMapData ( byte InitialVersion ) : System
InitialVersion byte The version of the Swf file using this tag.
return System
        public AlphaColorMapData( byte InitialVersion )
            : base(InitialVersion)
        {
            this._colorTableRGB = new List<Rgba>();
            this._colormapPixelData = new byte[ 0 ];
        }