phantomjs乱码问题生产环境处理方案

1.需要安装字体如下

(1).
yum install bitmap-fonts bitmap-fonts-cjk

(2).
wget http://www.my-guides.net/en/images/stories/fedora12/msttcore-fonts-2.0-3.noarch.rpm

rpm -Uvh msttcore-fonts-2.0-3.noarch.rpm

(3).
微软字体
msyhbd.ttf
msyh.ttf
simsun.ttc

安装方法如下:
将字体上传到目录:/usr/share/fonts/chinese/TrueType
执行如下命令:
#mkfontscale
#mkfontdir
#fc-cache -fv
让字体生效
#source /etc/profile

注意事项:
# mkfontscale (如果提示 mkfontscale: command not found,需自行安装 # yum install mkfontscale )
# mkfontdir
# fc-cache -fv (如果提示 fc-cache: command not found,则需要安装# yum install fontconfig )

2.检查系统语言环境
检查系统: vi /etc/profile
如果存在
export LC_ALL="zh_CN.UTF-8"
需要改成
export LC_ALL="en_US.UTF-8"

具体原因还不清楚,不过只有这样,微软雅黑字体方能生效,不会生成乱码方块

linux 查看安装字体命令:
fc-list :lang=zh

你可能感兴趣的:(phantomjs,中文乱码)