跳至内容 跳至搜索
方法
A
P

类公有方法

accept?(blob)

# File activestorage/lib/active_storage/previewer/poppler_pdf_previewer.rb, line 6
def accept?(blob)
  pdf?(blob.content_type) && pdftoppm_exists?
end

pdf?(content_type)

# File activestorage/lib/active_storage/previewer/poppler_pdf_previewer.rb, line 10
def pdf?(content_type)
  Marcel::Magic.child? content_type, "application/pdf"
end

pdftoppm_exists?()

# File activestorage/lib/active_storage/previewer/poppler_pdf_previewer.rb, line 18
def pdftoppm_exists?
  return @pdftoppm_exists unless @pdftoppm_exists.nil?

  @pdftoppm_exists = system(pdftoppm_path, "-v", out: File::NULL, err: File::NULL)
end

pdftoppm_path()

# File activestorage/lib/active_storage/previewer/poppler_pdf_previewer.rb, line 14
def pdftoppm_path
  ActiveStorage.paths[:pdftoppm] || "pdftoppm"
end

实例公有方法

preview(**options)

# File activestorage/lib/active_storage/previewer/poppler_pdf_previewer.rb, line 25
def preview(**options)
  download_blob_to_tempfile do |input|
    draw_first_page_from input do |output|
      yield io: output, filename: "#{blob.filename.base}.png", content_type: "image/png", **options
    end
  end
end