PIL - 是否有任何 PIL 解决方案可以让您截取指定网页的屏幕截图?
有没有办法使用 PIL 截取驻留在我的服务器上的指定 HTML/Javascript 页面的屏幕截图?
我想编写一个脚本来更改该 HTML 页面上的一些参数,然后让 PIL 对其进行屏幕截图。
有什么想法吗?示例将非常感激。
Is there a way to take a screenshot using PIL of an specified HTML/Javascript page that resides on my server?
I want to write a script that will change some parameters on that HTML page and then have PIL take screenshots of it.
Any ideas? Examples would be truly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你一定要使用PIL吗?如果没有,您也许可以使用具有内置 Webkit 控件的 PyQT 获得您想要的东西。
请参阅http://notes.alexdong.com/xhtml- to-pdf-using-pyqt4-webkit-and-headless 作为示例,无需使用单独的浏览器即可将 html+css 转换为 PDF。代码很短,所以我将其复制到下面。
Do you absolutely have to use PIL? If not you might be able to get what you want using PyQT which has a built-in Webkit control.
See http://notes.alexdong.com/xhtml-to-pdf-using-pyqt4-webkit-and-headless for an example which converts html+css into a PDF without using a separate browser. The code is pretty short so I've copied it below.