iTextSharp.text.pdf.codec.TIFFDirectory.ReadUnsignedInt C# (CSharp) 메소드

ReadUnsignedInt() 개인적인 메소드

private ReadUnsignedInt ( RandomAccessFileOrArray stream ) : long
stream iTextSharp.text.pdf.RandomAccessFileOrArray
리턴 long
        private long ReadUnsignedInt(RandomAccessFileOrArray stream)
        {
            if (isBigEndian) {
                return stream.ReadUnsignedInt();
            } else {
                return stream.ReadUnsignedIntLE();
            }
        }
        

Same methods

TIFFDirectory::ReadUnsignedInt ( RandomAccessFileOrArray stream, bool isBigEndian ) : long