BitMiracle.LibTiff.Classic.Internal.JpegCodec.EncodeRow C# (CSharp) Метод

EncodeRow() публичный Метод

Encodes one row of image data.
public EncodeRow ( byte buffer, int offset, int count, short plane ) : bool
buffer byte The buffer with image data to be encoded.
offset int The zero-based byte offset in at /// which to begin read image data.
count int The maximum number of encoded bytes that can be placed /// to
plane short The zero-based sample plane index.
Результат bool
        public override bool EncodeRow(byte[] buffer, int offset, int count, short plane)
        {
            if (m_rawEncode)
                return JPEGEncodeRaw(buffer, offset, count, plane);

            return JPEGEncode(buffer, offset, count, plane);
        }