[713]linux系统phantomjs截图乱码

用phantomjs去截取中文页面的网站可能会出现乱码的情况,也就是截图中中文的位置全是方框。

解决办法就是安装字体。

在centos中执行:yum install bitmap-fonts bitmap-fonts-cjk
在ubuntu中执行:sudo apt-get install xfonts-wqy

这样再去截图中文的页面就不会出现一堆的方框了。

CentOS 7添加微软雅黑字体

  1. 在 windows系统C:\Windows\Fonts中找到微软雅黑字体

雅黑:msyh
黑体:SimHei
宋体:SimSun
华文细黑:STXihei
华文楷体:STKaiti

[713]linux系统phantomjs截图乱码_第1张图片

[713]linux系统phantomjs截图乱码_第2张图片

2.上传到linux系统/usr/share/fonts/chinese中,如果没有文件夹,创建文件夹

#安装 字体添加工具
yum install -y fontconfig mkfontscale
#开始安装字体
cd /usr/share/fonts/chinese

建立字体缓存
[root@master ~]# mkfontscale
[root@master ~]# mkfontdir
[root@master ~]# fc-cache -fv

# 重启字体系统
# /etc/init.d/xfs restart # 不需要这个

使用fc-list命令查看已经安装的字体

# 查看已经安装的中文字体
$ fc-list :lang=zh
/usr/share/fonts/chinese/msyh.ttc: Microsoft YaHei:style=Normal
/usr/share/fonts/bitmap/fangsongti24.pcf.gz: Fangsong ti:style=Regular
/usr/share/fonts/chinese/msyh.ttc: Microsoft YaHei UI:style=Normal
/usr/share/fonts/bitmap/fangsongti16.pcf.gz: Fangsong ti:style=Regular

# 检查字体是否添加成功
$ fc-list | grep 雅黑
$ fc-list | grep YaHei
/usr/share/fonts/chinese/msyh.ttc: Microsoft YaHei:style=Normal
/usr/share/fonts/chinese/msyh.ttc: Microsoft YaHei UI:style=Normal

参考:https://www.jianshu.com/p/be22a21068c0
https://jingyan.baidu.com/article/0eb457e5d4a48703f0a90565.html

你可能感兴趣的:(异常)