-P在ADB的Powershell中

发布于 2025-01-24 07:22:54 字数 144 浏览 0 评论 0原文

嘿,我想从终端中的“ Mobilephone”中进行屏幕截图 我可以正常拉和推动,但是当我使用该命令时,

.\adb exec-out screencap -p > ./pic3.png

PNG无法打开

Hey im trying to do a screenshot from "Mobilephone" from the terminal
I can pull and push normally but when I use the command

.\adb exec-out screencap -p > ./pic3.png

The png cant open

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

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

发布评论

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

评论(2

恰似旧人归 2025-01-31 07:22:54

在撰写本文时(PowerShell 7.2.2), PowerShell的&gt;操作员从根本上无力捕获 raw bytes (二进制输出) - 参见< a href =“ https://stackoverflow.com/a/59118502/45375”>此答案以获取更多信息。

最简单的解决方法是通过cmd.exe致电,其&gt;操作员 die 支持RAW BYTE流:

cmd /c 'adb exec-out screencap -p > .\pic3.png'

另一种选择是直接保存屏幕截图到Android设备上的文件(语法从在这里然后下载它,如您显示在您自己的答案中

.\adb shell screencap ./pic3.png

As of this writing (PowerShell 7.2.2), PowerShell's > operator is fundamentally incapable of capturing raw bytes (binary output) - see this answer for more information.

The simplest workaround is to call via cmd.exe, whose > operator does support raw byte streams:

cmd /c 'adb exec-out screencap -p > .\pic3.png'

The alternative is to save the screenshot directly to a file on the Android device (syntax gleaned from here), and download it afterwards, as you show in your own answer.

.\adb shell screencap ./pic3.png
宁愿没拥抱 2025-01-31 07:22:54

好的,如果我在外壳中使用

.\adb shell screencap ./pic3.png

,那么我可以用它拉

.\adb pull sdcard/download/pic3.png

Ok if I use

.\adb shell screencap ./pic3.png

in shell, then I can pull it with

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