BitMiracle.LibTiff.Classic.Tiff.ReverseBits C# (CSharp) Method

ReverseBits() public static method

Replaces specified number of bytes in buffer with the equivalent bit-reversed bytes.
This operation is performed with a lookup table, which can be retrieved using the GetBitRevTable method.
public static ReverseBits ( byte buffer, int count ) : void
buffer byte The buffer to replace bytes in.
count int The number of bytes to process.
return void
        public static void ReverseBits(byte[] buffer, int count)
        {
            ReverseBits(buffer, 0, count);
        }

Same methods

Tiff::ReverseBits ( byte buffer, int offset, int count ) : void
Tiff