Automator를 실행한다음 아래 AppleScript를 추가 해준다.
- 경로명과 좌표는 알아서 바꿔준다
- 시나리오는 캡처 -> 다음 페이지 Click
- 반복 회수는 Automater에서
루프
로 추가 해준다.
set theDate to do shell script "date +%Y_%m_%d_%H%M%S"
set theTempPath to POSIX path of (path to desktop)
set thePath to theTempPath & "Captures/" & "SC_" & theDate & ".jpg"
delay 1.1...
do shell script "screencapture -x -R265,320,1190,670 -tjpg" & space & quoted form of thePath
tell application "System Events"
click at {1630, 540}
end tell
PDF는 img2pdf 프로그램을 쓴다.
- pip로 설치가능하다
pip install img2pdf
img2pdf --output MyBook.pdf --viewer-fit-window ./Captures/*.jpg
'Apple > OS X' 카테고리의 다른 글
OS X Byobu Vertical Split Ctrl+F2 가 안먹을때 (0) | 2019.02.18 |
---|---|
Mac에서 ISO만들기 (0) | 2013.06.28 |
간단한 mac port 사용법 (0) | 2012.11.04 |
[Mac] 윈도랑 키맵핑이 틀려서 불편하다면~ KeyReMap4MacBook 를 사용하자! (0) | 2012.08.13 |
OSX Lion 에서 NTFS 쓰기 (4) | 2012.08.09 |