MacOSX改变截图的默认格式的方法
02-28
苹果电脑MacOSX系统内截图后的默认照片文件格式是png的,如果你想把苹果电脑默认截图格式改为jpg、GIF或PDF,可以在终端输入以下命令
修改苹果电脑截图默认格式为jpg
defaults write com.apple.screencapture type jpg
复制代码
修改苹果电脑截图默认格式为GIF
defaults write com.apple.screencapture type gif
复制代码
修改苹果电脑截图默认格式为png
defaults write com.apple.screencapture type png
复制代码
修改苹果电脑截图默认格式为PDF
defaults write com.apple.screencapture type pdf
复制代码
PS:.png格式的照片有很多优点(否则Apple也不回默认保存成.png照片,对吧),首先它是无损压缩;其次png格式的照片显示速度很快,只需下载1/64的图像信息就可以显示出低分辨率的预览图像。