使用 imagegrabscreen 和 Wamp 捕获图像
我正在尝试使用 imagegrabscreen 捕获本地网页,但我只得到黑色屏幕截图。我尝试了 SO 和其他网站上的问题中的几乎所有解决方案,但没有任何效果。
我正在使用并完成以下操作:
- Windows 7 64位
- Wamp 2.2a 64位
- PHP 5.3.8
- gd2 (版本:“bundled 2.0.34 兼容”)已安装并启用。
- 允许 apache 服务与桌面交互。
- 我没有辅助显示器或任何东西。
<?php
$im = imagegrabscreen();
imagepng($im, "myscreenshot.png");
imagedestroy($im);
?>
我得到的只是一张 1024x768 png 的黑色图像。
I'm trying to capture a local web page with imagegrabscreen but I only get a black screenshot. I tried almost every solution from questions here on SO and others sites and nothing works.
I'm using and done the following:
- Windows 7 64bit
- Wamp 2.2a 64bit
- PHP 5.3.8
- gd2 (version: "bundled 2.0.34 compatible") is installed and enabled.
- Allowed the apache service to interact with the desktop.
- I don't have a secondary display or anything.
<?php
$im = imagegrabscreen();
imagepng($im, "myscreenshot.png");
imagedestroy($im);
?>
And all I get is a black image 1024x768 png.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以做到的。我这样做了。我没有使用WAMP。我单独使用了所有东西。我已经安装了所有 PHP、MySQL 和 Apache。
以下是步骤。
停止 Apache 服务器服务。您可以通过调用
来完成此操作
或者您可以打开
services.msc
然后停止它。将
Apache2.2
文件夹复制到C:\
中。 将其放在您拥有完全访问权限的位置。就像Documents
或其他驱动器中一样。我把它放在K:
中。为了确保您拥有完全访问权限,Apache2.2
文件夹的安全选项卡上勾选了完全控制
。httpd.conf
将包含大量硬编码路径。如C:\apache software Foundation\apache2.2
。只需将它们替换为您的新路径即可。就我而言,它是K:\Apache2.2
。此时您的 Apache 服务器服务应该停止。所以80端口不会被阻塞。您将在您自己的区域(目录)拥有您自己的 Apache。
打开控制台窗口并使用
cd
转到您的 Apache 主目录,其中包含htdocs
文件夹以及其他一些文件夹bin\httpd.exe
。这意味着您正在运行 Apache。 您拥有桌面的完全访问权限。 您可以做任何事情,httpd.exe
也是如此打开您的网页。使用以下代码。
<前><代码>
您将看到该图像。
You can do it. I did this. I didn't use WAMP. I used everything separate. I have all PHP, MySQL and Apache setup.
Here are the steps.
Stop the Apache server service. You can do this by invoking
or you can open the
services.msc
then stop it.Copy the
Apache2.2
folder out ofC:\
. Put it somewhere where you have full access. LikeDocuments
or in other drive. I put it inK:
. To be sure you have full access,Full control
marked tick on security tab of theApache2.2
folder.httpd.conf
will contain a lot of hardcoded paths. LikeC:\apache software foundation\apache2.2
. Just replace those with your new path. In my case it wasK:\Apache2.2
.At this moment your Apache Server Service should be stopped. So 80 port will not be blocked. And you'll have your own Apache at your own territory (directory).
Open a console window and go to your Apache home where
htdocs
folder resides along with some other folders usingcd
bin\httpd.exe
. This means you are running Apache. You have full access to your desktop. You can do anything, so dohttpd.exe
Open your web page. With following code.
You'll see the image.
这是来自 php.net 手册页上关于 imagegrabscreen() 的评论;尝试一下,看看它是否解决了问题,听起来像您遇到的问题:
要实际进行更改:
services.msc
。允许此服务与桌面交互的框< /代码>。
This is from a comment on the php.net manual page for imagegrabscreen(); try it and see if it fixes the issue, it sounds like what you're running into:
To actually make the change:
services.msc
as Admin.Allow this service to interact with the desktop
.如果您在使用 imagegrabscreen() 时遇到问题,您可能需要尝试使用 Windows 命令行工具来捕获屏幕,例如 boxcutter。然后使用 PHP exec() 函数来调用它。前任:
If you are having trouble with imagegrabscreen() you may want to try a windows command line tool to capture the screen like boxcutter. Then use the PHP exec() function to call it. ex: