BitMiracle.LibTiff.Classic.Tiff.ReverseBits C# (CSharp) 메소드

ReverseBits() 공개 정적인 메소드

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.
리턴 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