6

我在我的 Rails 应用程序中使用 PDFKit 来生成 PDF。问题是我的一些内容包含非ASCII字符。如何强制它使用 UTF-8?

4

2 回答 2

11

通过在 html 头中添加这个来修复:

<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
于 2011-09-09T20:41:07.707 回答
3
You can write in PDFKIT configration.

 PDFKit.configure do |config|
        config.wkhtmltopdf = '/opt/wkhtmltopdf'
        config.default_options = {
          :encoding      => 'UTF-8'
          :page_size     => 'Letter',
          :margin_top    => '0.3in',          
          :margin_bottom => '0.1in',          
          :print_media_type => true                       
        }
 end
于 2016-06-24T05:56:48.733 回答