如何使用 PHP 和 GD 对网站进行截图?
如何使用 PHP 和 GD 库创建网站的屏幕截图。
How can I create a screenshot of a website using PHP and the GD library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 PHP 和 GD 库创建网站的屏幕截图。
How can I create a screenshot of a website using PHP and the GD library.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
虽然您可能可以使用
imagegrabscreen
< /a> 或imagegrabwindow
你'只能在 Windows 机器上使用它,即使那样也会很棘手。您必须打开一个浏览器窗口到指定的 url(您可以使用 exec 来做到这一点)并使用上述方法抓取屏幕截图。
以下是
imagegrabwindow
:While you might be able to do something with
imagegrabscreen
orimagegrabwindow
you'd only be able to use it on a Windows box, and even then it would be tricky.You'd have to open a browser window to the specified url (you could do that with
exec
) and grab a screenshot using the aforementioned methods.Here's an example from the manual entry for
imagegrabwindow
:网站是在客户端渲染的,而PHP和GD是服务器端的。 您还可以查看此网站。 希望能帮助到你。
Website is rendered on client side, while PHP and GD are server side. You may also check this website out. Hope it helps.