# File lib/exifr/jpeg.rb, line 57
    def method_missing(method, *args)
      super unless args.empty?
      super unless methods.include?(method.to_s)
      @exif.send method if defined?(@exif) && @exif
    end