PHP 中的 Android 屏幕截图

发布于 2024-12-20 10:59:40 字数 159 浏览 2 评论 0原文

是否可以使用 PHP 对我的 Android 设备进行屏幕截图?

我想我需要使用 adb执行 adb 命令)截取屏幕截图,然后在我的 PHP 代码中显示结果?

有人尝试过类似的事情吗?

有什么建议吗?

Is it possible to take a screenshot of my Android device using PHP?

I suppose that I need to take a screenshot using adb (exec an adb command) and then display the result in my PHP code?

Have someone tried something similar?

Any suggestions?

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

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

发布评论

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

评论(2

古镇旧梦 2024-12-27 10:59:40

是的,当设备连接到运行 PHP 的系统并且运行 PHP 的用户具有 USB 访问权限时,这是可能的。

您需要以下软件来实现我的快速&肮脏的解决方案:BASH(或类似)、ffmpegadbPHP 以及 shell_exec >。

screenshot.sh

adb pull /dev/graphics/fb0 && \
ffmpeg -vframes 1 -f rawvideo -pix_fmt rgb32 -s 480x854 -i fb0 screenshot.png

调整屏幕分辨率(480x854)很重要。

测试

php -r 'echo shell_exec("sh ./screenshot.sh");'

感谢http://forum.xda-developers .com/showthread.php?t=1405275

Yes, it is possible when the device is connected to the system running PHP and the user running PHP has access rights to USB.

You need the following software for my quick & dirty solution: BASH (or similar), ffmpeg, adb and PHP with shell_exec.

screenshot.sh

adb pull /dev/graphics/fb0 && \
ffmpeg -vframes 1 -f rawvideo -pix_fmt rgb32 -s 480x854 -i fb0 screenshot.png

It is important to adjust the screen resolution (480x854).

Test

php -r 'echo shell_exec("sh ./screenshot.sh");'

Thanks to http://forum.xda-developers.com/showthread.php?t=1405275

这个俗人 2024-12-27 10:59:40

您可以做到这一点的唯一方法是在 Android 设备中运行 PHP 代码并运行外部程序,这是因为当您浏览网站时 PHP 无法看到/“触摸”客户端。

The only way you can do that is running PHP code in your Android device and running an external program, thats because PHP can't see/"touch" the client side when you are browsing a website.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文