1

我正在使用 Rails 3.1 和 PDFKit gem..

如何设置自定义 page_size?(我不想使用默认的“字母或 A4”)

4

3 回答 3

1

感谢这个SO Post

PDFKit.configure do |config|
  config.wkhtmltopdf = `which wkhtmltopdf`.to_s.strip
  config.default_options = {
    :encoding=>"UTF-8",
    :page_size=>"A4", #or "Letter" or whatever needed
    :margin_top=>"0.25in",
    :margin_right=>"1in",
    :margin_bottom=>"0.25in",
    :margin_left=>"1in",
    :disable_smart_shrinking=>false
    }
end

您可以将:page_size变量更改为您需要的任何内容。

于 2012-03-06T01:06:22.933 回答
1

在您的初始化程序中指定page_width和。page_height

PDFKit.configure do |config|
  config.default_options = {
     :page_width => '169.33',
     :page_height => '95.25'
  }
end

或者在你page_widthpage_height代码中。

kit = PDFKit.new(html, page_width: '169.33', page_height: '95.25')

该值以毫米为单位,感谢j.avi分享此解决方案

于 2014-05-25T17:59:39.877 回答
1

这对我有用:

var doc = new PDFDocument({
  size: [240, 320]
});
于 2015-11-08T21:28:52.283 回答