BitMiracle.LibJpeg.DecompressorToJpegImage.ProcessPixelsRow C# (CSharp) Method

ProcessPixelsRow() public method

public ProcessPixelsRow ( byte row ) : void
row byte
return void
        public void ProcessPixelsRow(byte[] row)
        {
            SampleRow samplesRow = new SampleRow(row,
                m_jpegImage.Width,
                m_jpegImage.BitsPerComponent,
                m_jpegImage.ComponentsPerSample);

            m_jpegImage.addSampleRow(samplesRow);
        }