1

在我的项目中,我正在尝试使用 wicked_PDF 打印带有来自 HTML 的几个图像和文本的灰度 PDF。Gem 提供了相同的功能,但它似乎不起作用。

这是我的代码:

    render :pdf => "MyObject",
            :wkhtmltopdf => '/usr/local/bin/wkhtmltopdf',
            :template => '/widgets/pdf/show_myObject.erb',
            :page_size => 'A4',
            :header => { :html => { :template => "/widgets/pdf/myObject_header.erb" }},
            :footer => { :html => { :template => "/widgets/pdf/myObject_footer.erb" }, :line => true },
            :margin => { :top => 0, :left => 3, :right => 3 },
            :greyscale => true

我将图像作为背景传递。但它呈现颜色。我错过了什么吗?为什么 wicked_PDF gem 无法按预期处理灰度功能?

他们的文档对此没有任何帮助。

4

1 回答 1

2

原来 wkhtmltopdf--grayscale选项在 wicked_pdf 中被错误地编码为--greyscale

(将“e”换成“a”)。

我已经推送了一个修复程序,并为此剪切了一个新版本的 gem (0.7.9)。感谢您指出!

:grayscale => true

现在按预期工作。

于 2012-04-30T20:57:04.763 回答