Ubuntu 11 Server 中的 PhantomJS,PNG 图像看起来为 256 色
因此,我在 Ubuntu 11 服务器上使用 PhantomJS,在完成设置所需的一切(包括安装 Xvfb)后,我发现捕获的网页似乎保存为 256 色 PNG 文件。
我在 Windows 上安装了 Phantom,完全没有这个问题。网页为全 32 位颜色。有什么想法吗?
So I'm using PhantomJS on Ubuntu 11 server, and after doing everything I needed to to set it up (including install Xvfb), I have found that web pages captured appear to be saved as 256-color PNG files.
I installed Phantom on Windows and it doesn't have that problem at all. Web pages are full 32-bit color. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了。必须使用以下参数运行 Xvfb:
Xvfb :0 -screen 0 1024x768x24
然后执行 Phantom。我认为我的初始化文件有问题。谢谢@@ariyahidayat :)
Solved it. Had to run Xvfb with the following params:
Xvfb :0 -screen 0 1024x768x24
Then execute Phantom. I think there was something wrong with my init file. Thanks @@ariyahidayat :)