BitMiracle.LibTiff.Classic.Internal.DumpModeCodec.EncodeRow C# (CSharp) Method

EncodeRow() public method

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.
return bool
        public override bool EncodeRow(byte[] buffer, int offset, int count, short plane)
        {
            return DumpModeEncode(buffer, offset, count, plane);
        }