본문 바로가기

Apple/OS X

OSX Mac 에서 자동 캡처 후 PDF로 만들기

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