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

howMany8() private static method

private static howMany8 ( int x ) : int
x int
return int
        private static int howMany8(int x)
        {
            return ((x & 0x07) != 0 ? (x >> 3) + 1 : x >> 3);
        }
Tiff