LoginSignup
0
0

More than 5 years have passed since last update.

【Rails】PDFダウンロードした時に日本語が表示されない問題

Last updated at Posted at 2018-06-21

問題点

respond_to do |format|
  format.html
  format.pdf do
    render pdf: template: "xxxxxxxxxx.html.erb", encoding: "UTF-8"
  end
end

こんな感じにpdfを出力しようとするわけだが、なぜかダウンロードしてみると日本語だけ表示されずに真っ白な部分ができてしまう。

UTF-8を指定しているし文字化けも防げている。

結論

$ sudo yum install -y ipa-gothic-fonts
$ sudo yum install -y ipa-mincho-fonts

これで日本語のフォントが使えるようになり、日本語もちゃんと表示されるはずです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0