底层通过实现html截图。
phantom利用的是webKit内核,全面支持web而不需浏览器支持,快速,原生支持各种Web标准。
yum安装,不多说 yum search bzip2 //查询安装包yum -y install bzip2.x86_64
乱码问题
- gbk乱码,也就是截图出现口等乱码
1 2 |
|
字体太小,设置大小, 需要安装中文字体
# centOS
$ yum -y install mkfontscale fontconfig
# unbuntu
$ apt-get -y install fontconfig xfonts-utils
$ mkdir /usr/share/fonts/win/
# 下载微软雅黑字体
$ wget https://cdn.bingo.ren/msyh.ttf -O /usr/share/fonts/win/msyh.ttf
# 建立字体索引,更新字体缓存
$ cd /usr/share/fonts/win/
$ mkfontscale
如果提示 mkfontscale: command not found,需自行安装 # yum install mkfontscale
$ mkfontdir
$ fc-cache
如果提示 fc-cache: command not found,则需要安装# yum install fontconfig
另参考
https://blog.bingo.ren/51.html
http://www.cnblogs.com/lekko/p/4796062.html
http://www.cnblogs.com/zengguowang/p/6911812.html
http://www.cnblogs.com/xiaoheimiaoer/p/4309131.html