CSJ2K.Icc.ICCProfiler.ICCProfiler C# (CSharp) Method

ICCProfiler() protected method

Ctor which creates an ICCProfile for the image and initializes all data objects (input, working, output).
/// /// ///
protected ICCProfiler ( BlkImgDataSrc src, CSJ2K csMap ) : System
src BlkImgDataSrc -- Source of image data ///
csMap CSJ2K
return System
        protected internal ICCProfiler(BlkImgDataSrc src, CSJ2K.Color.ColorSpace csMap)
            : base(src, csMap)
        {
            initialize();

            iccp = getICCProfile(csMap);
            if (ncomps == 1)
            {
                xform = new MonochromeTransformTosRGB(iccp, maxValueArray[0], shiftValueArray[0]);
            }
            else
            {
                xform = new MatrixBasedTransformTosRGB(iccp, maxValueArray, shiftValueArray);
            }

            /* end ICCProfiler ctor */
        }

Same methods

ICCProfiler::ICCProfiler ( ) : System