CSJ2K.Color.ColorSpace.ColorSpace C# (CSharp) Method

ColorSpace() public method

public constructor which takes in the image, parameterlist and the image header decoder as args.
ColorSpaceException ///
public ColorSpace ( CSJ2K.j2k.io.RandomAccessIO in_Renamed, CSJ2K.j2k.codestream.reader.HeaderDecoder hd, CSJ2K.j2k.util.ParameterList pl ) : System
in_Renamed CSJ2K.j2k.io.RandomAccessIO
hd CSJ2K.j2k.codestream.reader.HeaderDecoder provides information about the image header. ///
pl CSJ2K.j2k.util.ParameterList provides parameters from the default and commandline lists. ///
return System
        public ColorSpace(RandomAccessIO in_Renamed, HeaderDecoder hd, ParameterList pl)
        {
            this.pl = pl;
            this.in_Renamed = in_Renamed;
            this.hd = hd;
            getBoxes();
        }