method

read_image

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ImageAnalyzer
read_image() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activestorage/lib/active_storage/analyzer/image_analyzer.rb, line 34
      def read_image
        download_blob_to_tempfile do |file|
          require "mini_magick"
          yield MiniMagick::Image.new(file.path)
        end
      end
Register or log in to add new notes.