fugafuga.write

日々のログ

Mac OSX で画面キャプチャする方法

OS の標準機能で画面キャプチャをとる方法


Command + Shift + 3 → 画面全体

Command + Shift + 4 → 選択範囲

保存時の画像形式を指定する方法

ターミナルで操作

jpg にする。

# defaults write com.apple.screencapture type jpg

SystemUIServerを再起動。

# killall SystemUIServer


保存時の場所を指定する方法

保存場所を指定

# defaults write com.apple.screencapture location ~/capture

SystemUIServerを再起動。

# killall SystemUIServer