iTextSharp.text.Jpeg.GetShortInverted C# (CSharp) Method

GetShortInverted() private static method

Reads an inverted short from the Stream.
private static GetShortInverted ( Stream istr ) : int
istr Stream the Stream
return int
        private static int GetShortInverted(Stream istr)
        {
            return (istr.ReadByte() + istr.ReadByte() << 8);
        }