CSJ2K.j2k.util.CodestreamManipulator.CodestreamManipulator C# (CSharp) Method

CodestreamManipulator() public method

Instantiates a codestream manipulator..
public CodestreamManipulator ( System.Stream stream, int nt, int pptp, bool ppm, bool ppt, bool tempSop, bool tempEph ) : System.Collections.Generic
stream System.Stream The output stream /// ///
nt int The number of tiles in the image /// ///
pptp int Packets per tile-part. If zero, no division into tileparts /// is performed /// ///
ppm bool Flag indicating that PPM marker is used /// ///
ppt bool Flag indicating that PPT marker is used /// ///
tempSop bool Flag indicating whether SOP merker should be removed /// ///
tempEph bool Flag indicating whether EPH merker should be removed /// ///
return System.Collections.Generic
        public CodestreamManipulator(Stream stream, int nt, int pptp, bool ppm, bool ppt, bool tempSop, bool tempEph)
        {
            InitBlock();
            this.stream = stream;
            this.nt = nt;
            this.pptp = pptp;
            this.ppmUsed = ppm;
            this.pptUsed = ppt;
            this.tempSop = tempSop;
            this.tempEph = tempEph;
        }