Mac Mojave 更改默认的截图名称格式及路径

Mac Mojave 更改默认的截图名称格式及路径

参考文章:https://www.macdu.org/1034.html

使用 mac 截图的快捷键

  1. 对整个屏幕进行截图 command+shift+3
  2. 对屏幕的一部分进行截图 command+shift+4
  3. 对打开的窗口进行截图 command+shift+4 加上 space
  4. 若要保存的粘贴板,请加多 control 键

更换截图默认文件名

 defaults write com.apple.screencapture name "the Default Name"
 
 killall SystemUIServer

更换默认截图的图片格式

  1. 设置截图文件的格式为「.jpg」,在 terminal 上执行

    defaults write com.apple.screencapture type jpg
    
    killall SystemUIServer
    
  2. 设置截图文件的格式为「.gif」

    defaults write com.apple.screencapture type gif
    
    killall SystemUIServer
    
  3. 设置截图文件的格式为「.pdf」

    defaults write com.apple.screencapture type PDF
    
    killall SystemUIServer    
    
  4. 设置截图文件的格式为「.png」

    defaults write com.apple.screencapture type png
    
    killall SystemUIServer
    
  5. 设置截图文件的格式为「.tiff」

    defaults write com.apple.screencapture type tiff
    
    killall SystemUIServer
    

更换默认截图路径

	defaults write com.apple.screencapture location ~/Desktop/截图图库
    
	killall SystemUIServer

你可能感兴趣的:(Mac,OS)