1

我在使用 pdf_kit gem 生成 PDF 文件时遇到问题。如果我在我的应用程序控制台中运行这些命令(RAILS_ENV=production rails c):

kit = PDFKit.new(html, :page_size => 'Letter')
file = kit.to_file('./demo.pdf')

我可以看到正确生成的 pdf 文件,但是如果我在动作控制器上尝试同样的事情,这样:

kit = PDFKit.new("ciao")
kit.to_file('/root/app/bidimal/demo1.pdf')

我在 production.log 中收到此错误

RuntimeError (command failed: "/root/.rbenv/shims/wkhtmltopdf" "--encoding" "UTF-8" "--page-size" "A4" "--margin-top" "0.25in" "--margin-right" "0.25in" "--margin-bottom" "0.25in" "--margin-left" "0.25in" "--quiet" "-" "/root/app/bidimal/demo1.pdf"):
  app/controllers/winners_controller.rb:69:in `invoice'

我已经使用以下方法检查了 wkhtmltopdf 的路径:

which wkhtmltopdf
/root/.rbenv/shims/wkhtmltopdf

所以我想这是正确的。顺便说一句,我在 config/initializers/pdfkit.rb

PDFKit.configure do |config|
  config.wkhtmltopdf = '/root/.rbenv/shims/wkhtmltopdf'
  config.default_options[:ignore_load_errors] = true
  config.default_options = {
    :encoding=>"UTF-8",
    :page_size=>"A4",
    :margin_top=>"0.25in",
    :margin_right=>"0.25in",
    :margin_bottom=>"0.25in",
    :margin_left=>"0.25in",
    :disable_smart_shrinking=>false
    }
end

我在 nginx+passenger 下,问题可能与任何 nginx 设置(如可用进程等)有关吗?谢谢

4

1 回答 1

1

最近我开始遇到 wkhtmltopdf-binary gem 的问题......我仍然不确定发生了什么。

为了解决这个问题,我做了以下事情:

  1. 我从我的 gemfile 中删除了 wkhtmltopdf-binary gem
  2. 我还在我的 rbenv 环境中安装了这个 gem。我登录服务器并通过执行 gem uninstall wkhtmltopdf-binary 将其删除
  3. 我直接在我的系统上安装了 wkhtmltopdf 可执行文件。(我在 ubuntu 上,所以我的命令是 sudo apt-get install wkhtmltopdf)
  4. 我在我的 Rails 应用程序“config/initializers/pdfkit.rb”中创建了一个初始化程序,其中包含以下内容

PDFKit.configure do |config| config.wkhtmltopdf = '/usr/local/bin/wkhtmltopdf' end

一切又开始工作了。

于 2014-11-23T22:57:16.793 回答