instance method
draw
Ruby on Rails 5.2.8.1
Since v5.2.8.1 PrivateSignature
draw(*argv)
Executes a system command, capturing its binary output in a tempfile. Yields the tempfile.
Use this method to shell out to a system library (e.g. mupdf or ffmpeg) for preview image generation. The resulting tempfile can be used as the :io value in an attachable Hash:
def preview download_blob_to_tempfile do |input| draw "my-drawing-command", input.path, "--format", "png", "-" do |output| yield io: output, filename: "#{blob.filename.base}.png", content_type: "image/png" end end end
The output tempfile is opened in the directory returned by ActiveStorage::Downloading#tempdir.
Parameters
-
argvrest
Source
# File activestorage/lib/active_storage/previewer.rb, line 45
def draw(*argv) #:doc:
ActiveSupport::Notifications.instrument("preview.active_storage") do
open_tempfile_for_drawing do |file|
capture(*argv, to: file)
yield file
end
end
end
Defined in activestorage/lib/active_storage/previewer.rb line 45
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveStorage::Previewer