일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 아이폰
- codility
- Cordova
- 헬스
- naver
- 구름TEST
- 맥용
- 아이폰 해상도
- 네이버알고리즘
- error
- 맥북
- objective-c
- java
- 코딩
- 코딩테스트
- 네이버구름
- 안드로이드
- Object-c
- Swift
- codemonkey
- iPhone
- ios
- 네이버
- 구름알고리즘
- goormtest
- algorism
- 알고리즘
- android
- 아이폰 비율
- code
Archives
- Today
- Total
그래오늘은이거야
Mac Terminal(터미널) screenshot 스크린샷 jpg,png, HEIC,PDF,GIF,TIFF 확장자 변경 및 경로 지정 (폴더 경로 보이기) 본문
세상 개발/IOS(Swift)
Mac Terminal(터미널) screenshot 스크린샷 jpg,png, HEIC,PDF,GIF,TIFF 확장자 변경 및 경로 지정 (폴더 경로 보이기)
jinhongstar 2022. 10. 5. 10:42728x90
반응형
안녕하세요
보안상 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/
반응형
'세상 개발 > IOS(Swift)' 카테고리의 다른 글
Comments