pure-python-adb
pure-python-adb copied to clipboard
screencap truncated in game“王者荣耀”
screencap truncated in game“王者荣耀” https://pvp.qq.com/
https://gitee.com/DaveBoy/Pics/raw/master/Typora%E5%9B%BE%E5%BA%8A/screen.png

the Emulator: https://syzs.qq.com/ my test code
from ppadb.client import Client as AdbClient
client = AdbClient(host="127.0.0.1", port=5037)
device = client.devices()[0]
result = device.screencap()
with open("screen.png", "wb") as fp:
fp.write(result)
@Swind