'adb screen capture'에 해당되는 글 1건

  1. 2024.12.05 Lognote - 스크린 캡쳐 쉽게 하기

Lognote - 스크린 캡쳐 쉽게 하기

프로그래밍/lognote 2024. 12. 5. 04:47
반응형

https://cdcsman.tistory.com/entry/Lognote-Android-logcat-viewer

 

Lognote - Log viewer, Android logcat viewer for Windows, Linux, Mac

https://github.com/cdcsgit/lognote/releases Releases · cdcsgit/lognoteLog viewer, Android logcat viewer for Windows, Linux, Mac - cdcsgit/lognotegithub.com   텍스트 로그 파일 보기(필터)Logcat 보기(Online/Offline)정규 표현식 필터에

cdcsman.tistory.com

 

1. 스크린 캡쳐 버튼 추가하기

전체 로그 출력 창에 있는 "Cmds" 버튼을 클릭하여 "Cmd Manager" 로 이동

 

Cmd Manager 에서 "New" 로 버튼 추가

 

스크린 캡쳐 명령 스크립트를 만든 후 경로 입력

#! /bin/sh

DATE=`date "+%Y%m%d_%H.%M.%S"`
/usr/bin/adb exec-out screencap -p > /home/cdcs/tmp/capture/screen-$DATE.png
# Print completion status to logcat
/usr/bin/adb shell log -t Lognote screen capture completed

 

스크린 캡쳐 명령 실행 으로 저장된 파일 확인

 

 

2. 특정 로그 발생시 스크린 캡쳐 하기

View > Log Trigger 으로 트리거 화면 실행

"Add" 버튼으로 트리거 추가

 

트리거 실행 후 로그 발생시("screencapture test") 로그 저장 확인

 

 

* 리눅스를 기반으로 작성 되어 다른 OS는 수정이 필요할수 있다.(명령, 경로 등)

반응형
: