陈斌彬的技术博客

Stay foolish,stay hungry

更改 OS X 默认的截图格式

Mac系统自带的截图功能非常好用,⌘⇧3全屏截图 和 ⌘⇧4 窗口截图这两个快捷键非常之好用,但是有时候我们还希望对其进行一些自定义。

文件格式

defaults write com.apple.screencapture type -string FORMAT

其中 FORMAT 是你要的格式,支持的格式有

png、jpg、pdf、jp2、gif、tif、bmp、pict、tga、sgi

比如我要改为 jpg

defaults write com.apple.screencapture type -string jpg

默认值为 png

如多次修改后无效请使用 killall SystemUIServer 或注销

默认保存路径

defaults write com.apple.screencapture location -string PATH

其中 PATH 是你要的路径,比如我要保存到下载文件夹,可以

defaults write com.apple.screencapture location -string ~/Downloads/

修改后请使用 killall SystemUIServer 或注销 默认值为 ~/Desktop/,即桌面。

禁用阴影

本项目决定使用 ⌘⇧4 后按空格选取窗口截图时是否要截取窗口阴影

关闭阴影:

defaults write com.apple.screencapture disable-shadow -boolean true

打开阴影:

defaults write com.apple.screencapture disable-shadow -boolean false

修改后请使用 killall SystemUIServer 或注销

默认为 false ,即启用阴影

参考