# File lib/mini_magick.rb, line 33
      def from_file(image_path)
        File.open(image_path, "rb") do |f|
          self.from_blob(f.read, File.extname(image_path))
        end
      end