adb 截屏保存到电脑

1.先将截屏图片保存到SDCard中,这个过程需要点时间,最好等个1s

adb shell /system/bin/screencap -p /sdcard/screen.png

2.将图片保存到电脑指定路径中

adb pull /sdcard/screen.png d:/screen.png

3.删除掉sdcard中的图片(可以选择不删除)

adb shell rm /sdcard/screen.png

你可能感兴趣的:(adb 截屏保存到电脑)