網上有很多解決Linux下PDF中文亂碼的問題,這裡總結一個最簡單的解決方法。
1. 安裝poppler-data
- sudo apt-get install poppler-data
2. 修改系統配置文件(/etc/fonts/conf.avail/49-sansserif.conf)
- <edit name="family" mode="append_last">
- <string>sans-serif</string>
- </edit>
- 修改為:
- <edit name="family" mode="append_last">
- <string>SimSun</string>
- </edit>
這裡需要注意的是,確認你的機器上的宋體是SimSun,這可以通過命令fc-list :lang=zh來查看。
- 宋體,SimSun:style=Regular
經過上面兩步後,基本可以解決絕大部分的亂碼問題。