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

readInt() static private method

static private readInt ( byte buffer, int offset ) : int
buffer byte
offset int
return int
        internal static int readInt(byte[] buffer, int offset)
        {
            int value = buffer[offset++] & 0xFF;
            value += (buffer[offset++] & 0xFF) << 8;
            value += (buffer[offset++] & 0xFF) << 16;
            value += buffer[offset++] << 24;
            return value;
        }
Tiff