Hjg.Pngcs.PngReader.ReadRowInt C# (CSharp) Method

ReadRowInt() public method

public ReadRowInt ( int nrow ) : Hjg.Pngcs.ImageLine
nrow int
return Hjg.Pngcs.ImageLine
        public ImageLine ReadRowInt(int nrow)
        {
            if (imgLine == null)
                imgLine = new ImageLine(ImgInfo, ImageLine.ESampleType.INT, unpackedMode);
            if (imgLine.Rown == nrow) // already read
                return imgLine;
            ReadRowInt(imgLine.Scanline, nrow);
            imgLine.FilterUsed = (FilterType)rowbfilter[0];
            imgLine.Rown = nrow;
            return imgLine;
        }

Same methods

PngReader::ReadRowInt ( int buffer, int nrow ) : int[]