Android - adb 명령어로 screen capture 저장

adb 명령어로 Screenshot(Screen capture) 이미지를 저장할 수 있습니다.

adb shell screencap -p PATH

다음 명령어는 screen capture하여 이미지를 /sdcard/screen.png 경로에 저장합니다.

$ adb shell screencap -p /sdcard/screen.png

adb 명령어로 파일이 저장되었는지 확인할 수 있습니다.

$ adb shell ls /sdcard/screen.png
/sdcard/screen.png

adb pull PATH : 파일을 PC로 복사

다음 명령어를 사용하여 screen capture 파일을 PC로 다운로드할 수 있습니다.

$ adb pull /sdcard/screen.png
/sdcard/screen.png: 1 file pulled, 0 skipped. 4.0 MB/s (36850 bytes in 0.009s)

아래와 같이 PC에 복사된 것을 확인할 수 있습니다.

$ ls
screen.png
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha