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

fetchFloat() private method

Fetch a single floating point value from the offset field and return it as a native float.
private fetchFloat ( TiffDirEntry dir ) : float
dir TiffDirEntry
return float
        private float fetchFloat(TiffDirEntry dir)
        {
            int l = extractData(dir);
            return BitConverter.ToSingle(BitConverter.GetBytes(l), 0);
        }
Tiff