LoginSignup
20
24

More than 5 years have passed since last update.

mPDFでconfig.phpを触らずに日本語フォントで出力させて文字化けを解消

Last updated at Posted at 2014-02-21

phpからpdfファイルを直接生成させることができる便利なmPDFライブラリだが、そのまま使うと日本語が化けてしまう。

mPDFで日本語フォントで出力するには mpdf/config.php#44

$useAdobeCJK = true; // デフォルトはfalse

と修正する必要があるのだが、composergit submoduleを使ってデプロイされるアプリケーションだと、ライブラリ内にあるconfig.phpを書き換えるのは若干面倒臭い。

そこでmpdfクラスのコンストラクタに下記のように初期化文字列を渡すと、うまいこと解決できる

$mpdf = new mpdf('ja+aCJK');
20
24
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
20
24