You are currently browsing all posts tagged with 'mac osx' in the JHuskisson.com post archives.
-
Changing the default Mac screen shot image type
I recently had the need to change the default Mac OSX takes it’s screen shots in. There’s some occasions where you need more quality than PNG and some occasions where you need a file anyone can open and simply don’t want PNG as your default.
Well, in OSX 10.4 and onwards you can change the default screen shot format.
Start by opening Terminal, located in /Applications/Utilities/Terminal
Type in:
defaults write com.apple.screencapture type image_format
killall SystemUIServerReplace image_format with your selected format that you wish to change the default setting to. The second line reloads the default so that you don’t need to log out and back in again for the change to take effect. The next time you take a screen shot after executing both of these commands, it will be saved in the new format you have chosen.
Below is a list of several popular image types and their commands in full should you wish to paste them.
BMP
defaults write com.apple.screencapture type bmp
killall SystemUIServerGIF
defaults write com.apple.screencapture type gif
killall SystemUIServerJPG
defaults write com.apple.screencapture type jpg
killall SystemUIServerPDF
defaults write com.apple.screencapture type pdf
killall SystemUIServerPNG
defaults write com.apple.screencapture type png
killall SystemUIServerTIFF
4 Comments »defaults write com.apple.screencapture type tiff
killall SystemUIServer

