Python Webkit 使用虚拟帧缓冲区制作网站屏幕截图

发布于 2024-11-18 15:38:02 字数 116 浏览 0 评论 0原文

问题是我需要在不运行 X 服务器的情况下捕获网站屏幕截图。

因此理论上可以创建一个虚拟帧缓冲区并使用它来捕获屏幕截图。

有没有类似的解决方案,任何建议,将不胜感激?

苏丹

The problem is that I need capture web-site screenshots without running X server.

So theoretically it's possible to create a virtual frame buffer and to use it to capture screenshot.

Is there any similar solutions, any advice would be appreciated?

Sultan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灵芸 2024-11-25 15:38:02

您可以结合使用 Selenium WebDriver 和 pyvirtualdisplay(使用 xvfb)在虚拟显示器中运行浏览器并捕获屏幕截图。

因此,您需要的设置是:

  • Selenium Python 绑定
  • pyvirtualdisplay Python 包(取决于 xvfb)

在 Debian/Ubuntu Linux 系统上,您可以使用以下命令设置所有内容:

  • $ sudo apt-get install python-pip xvfb
  • < code>$ sudo pip install selenium

设置完成后,以下代码示例应该可以工作:

#!/usr/bin/env python

from pyvirtualdisplay import Display
from selenium import webdriver

display = Display(visible=0, size=(800, 600))
display.start()

browser = webdriver.Firefox()
browser.get('http://www.google.com')
browser.save_screenshot('screenie.png')
browser.quit()

display.stop()

这将:

  • 启动虚拟显示
  • 启动 Firefox 浏览器
  • 导航到 google.com
  • 捕获屏幕截图
  • 关闭浏览器
  • 停止虚拟显示

you can use a combination of Selenium WebDriver and pyvirtualdisplay (which uses xvfb) to run your browser in a virtual display and capture screenshots.

so, the setup you need is:

  • Selenium Python bindings
  • pyvirtualdisplay Python package (depends on xvfb)

On Debian/Ubuntu Linux systems, you can setup everything with:

  • $ sudo apt-get install python-pip xvfb
  • $ sudo pip install selenium

once you have it setup, the following code example should work:

#!/usr/bin/env python

from pyvirtualdisplay import Display
from selenium import webdriver

display = Display(visible=0, size=(800, 600))
display.start()

browser = webdriver.Firefox()
browser.get('http://www.google.com')
browser.save_screenshot('screenie.png')
browser.quit()

display.stop()

this will:

  • launch a virtual display
  • launch Firefox browser
  • navigate to google.com
  • capture a screenshot
  • close the browser
  • stop the virtual display
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文