adb截图保存到电脑

高版本安卓支持直接保存:

adb exec-out screencap -p > 1.png

低版本安卓

  1. 比较常规的办法的是:
    先截图放在手机的sdcard里,然后pull到电脑端
adb shell screencap /sdcard/1.png
adb pull /sdcard/1.png ./
  1. adb命令可以直接将流保存在电脑端,android6以上的系统
    如果是linux系统:
adb shell screencap -p > 1.png

如果是windows系统,执行上述命令出来的图片,由于换行符的问题,会导致打不开文件,需要把\r\n换成\n

def convert_img():
    with open("./1.png", "rb") as f:
        bys = f.read()
        bys_ = bys.replace(b"\r\n",b"\n")  # 二进制流中的"\r\n" 替换为"\n"
    with open("./2.png", "wb") as f:
        f.write(bys_)
    f.close()

有的手机可以直接用以下命令生成在本地

adb exec-out screencap -p > test.png

参考文献:
https://stackoverflow.com/questions/13578416/read-binary-stdout-data-from-adb-shell/20141481#20141481

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