Hi guys,
I would appreciate it if you could help me reading a 16bit binary file (tiff image). Since the file is in 16bit, pixels of the file stores values ranging from 1200 to 4500. I want to retrieve those values. I used ReadUInt16 since the file has a 2byte data type but keep getting EnfofStreamException Unhandled error.
Dim f1 As New System.IO.FileInfo(TextBox2.Text)
fLen1 = f1.Length
Dim snglRead As Single
Dim i As Integer
For i = 0 To fLen1 - 1
snglRead = br.ReadUInt16 'Exception thrown here
snglOutput = snglRead
bw.Write(snglOutput)
Next