CSJ2K.j2k.image.output.ImgWriterPGM.ImgWriterPGM C# (CSharp) Method

ImgWriterPGM() public method

Creates a new writer to the specified file, to write data from the specified component.

The size of the image that is written to the file is the size of the component from which to get the data, specified by b, not the size of the source image (they differ if there is some sub-sampling).

public ImgWriterPGM ( System fname, BlkImgDataSrc imgSrc, int c ) : System
fname System The name of the file where to write the data /// ///
imgSrc BlkImgDataSrc The source from where to get the image data to write. /// ///
c int The index of the component from where to get the data. /// ///
return System
        public ImgWriterPGM(System.String fname, BlkImgDataSrc imgSrc, int c)
            : this(FileInfoFactory.New(fname), imgSrc, c)
        {
        }

Same methods

ImgWriterPGM::ImgWriterPGM ( IFileInfo out_Renamed, BlkImgDataSrc imgSrc, int c ) : System