class ActiveStorage::Previewer

def draw(*argv) # :doc:

:doc:
The output tempfile is opened in the directory returned by #tmpdir.

end
end
end
yield io: output, filename: "#{blob.filename.base}.png", content_type: "image/png"
draw "my-drawing-command", input.path, "--format", "png", "-" do |output|
download_blob_to_tempfile do |input|
def preview

generation. The resulting tempfile can be used as the +:io+ value in an attachable Hash:
Use this method to shell out to a system library (e.g. muPDF or FFmpeg) for preview image

Executes a system command, capturing its binary output in a tempfile. Yields the tempfile.
def draw(*argv) # :doc:
  open_tempfile do |file|
    instrument :preview, key: blob.key do
      capture(*argv, to: file)
    end
    yield file
  end
end