# File lib/exifr/tiff.rb, line 318
    def self.round(f, n)
      q = (10 ** n)
      (f * q).round.to_f / q
    end