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

GetBitRevTable() public static method

Retrieves a bit reversal table.
If reversed is false then the table that do not reverse bit values will be retrieved. It is a lookup table that can be used as an identity function; i.e. NoBitRevTable[n] == n.
public static GetBitRevTable ( bool reversed ) : byte[]
reversed bool if set to true then bit reversal table will be /// retrieved; otherwise, the table that do not reverse bit values will be retrieved.
return byte[]
        public static byte[] GetBitRevTable(bool reversed)
        {
            return (reversed ? TIFFBitRevTable : TIFFNoBitRevTable);
        }
Tiff