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

ColorMapData() public method

The COLORMAPDATA structure contains image data. This

structure is compressed as a single block of data.

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