일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- ios
- codemonkey
- 맥용
- 네이버
- 알고리즘
- java
- 구름TEST
- algorism
- Cordova
- 헬스
- 아이폰
- objective-c
- 맥북
- 코딩테스트
- android
- Object-c
- code
- 구름알고리즘
- 코딩
- codility
- 네이버구름
- goormtest
- 네이버알고리즘
- 아이폰 해상도
- 아이폰 비율
- error
- Swift
- iPhone
- naver
- 안드로이드
- Today
- Total
그래오늘은이거야
Mac Terminal(터미널) screenshot 스크린샷 jpg,png, HEIC,PDF,GIF,TIFF 확장자 변경 및 경로 지정 (폴더 경로 보이기) 본문
Mac Terminal(터미널) screenshot 스크린샷 jpg,png, HEIC,PDF,GIF,TIFF 확장자 변경 및 경로 지정 (폴더 경로 보이기)
jinhongstar 2022. 10. 5. 10:42안녕하세요
보안상 png 파일을 사용못하거나 스크린샷을 pdf 로 저장할때
터미널 에서 스크린샷 확장자 변경
defaults write com.apple.screencapture location ~/Desktop



/Users/jbappdevelopone/Desktop
폴더 경로 보이기 폴더 경로 이름을 복사 해서
defaults write com.apple.screencapture location ~/Desktop
특정 경로에 를 입력 하면 그 경로로 스크린샷 위치가 변경됩니다.
defaults write com.apple.screencapture location 변경할 위치
예를들어 ) defaults write com.apple.screencapture location /Users/jbappdevelopone/Desktop
screenshot location change
스크린샷 확장자 변경은 아래와 같습니다.
터미널을 열고 변경하고 싶은 확장자명으로 복사하여 붙여넣으면됩니다.
- Open Terminal from the Application > Utilities folder, or use Spotlight to open it.
- Copy and paste one of the following commands into Terminal and press the Enter key.
- To save Mac screenshots in JPG format:
defaults write com.apple.screencapture type jpg;killall SystemUIServer
- To save Mac screenshots in HEIC format:
defaults write com.apple.screencapture type heic;killall SystemUIServer
- To save Mac screenshots as PDF:
defaults write com.apple.screencapture type PDF;killall SystemUIServer
- To save Mac screenshots as GIF:
defaults write com.apple.screencapture type gif;killall SystemUIServer
- To save Mac screenshots as TIFF:
defaults write com.apple.screencapture type tiff;killall SystemUIServer
- Or, to return Mac screenshots back to PNG format:
defaults write com.apple.screencapture type png;killall SystemUIServer
래퍼런스
https://www.makeuseof.com/how-to-change-default-screenshot-format-mac/
How to Save Mac Screenshots as JPG, GIF, PDF, and Other Formats
Want to save your Mac screenshots as a different file format? Here's how to change to default on your Mac or save shots on a case-by-case basis.
www.makeuseof.com