PHP 中的 Android 屏幕截图
是否可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,当设备连接到运行 PHP 的系统并且运行 PHP 的用户具有 USB 访问权限时,这是可能的。
您需要以下软件来实现我的快速&肮脏的解决方案:
BASH
(或类似)、ffmpeg
、adb
和PHP
以及shell_exec
>。screenshot.sh
调整屏幕分辨率(480x854)很重要。
测试
感谢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
andPHP
withshell_exec
.screenshot.sh
It is important to adjust the screen resolution (480x854).
Test
Thanks to http://forum.xda-developers.com/showthread.php?t=1405275
您可以做到这一点的唯一方法是在 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.