1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Macスクリーンショットの備忘録

Last updated at Posted at 2019-08-14

#0. はじめに

  • Mac環境の勉強がてらスクリーンショットの方法を調べたので自分用の備忘録としてまとめました。

#1. 画面全体→ファイルに保存

  • Command + Shift + 3の同時押下。
  • デフォルトではDesktop.pngで保存される。

#2. 画面全体→クリップボードに保存

  • Command + Shift + 3 + Controlの同時押下。
  • クリップボードに画面キャプチャーが保存される。

#3. 指定ウインドウ→ファイルに保存

  • Command + Shift + 4の同時押下(マウスカーソルが十字アイコンに)。 Space押下でカーソルがカメラアイコンに変わるので、キャプチャしたいウインドウをクリックする。
  • デフォルトではDesktop.pngで保存される。

#4. 指定ウインドウ→クリップボードに保存

  • Command + Shift + 4 + Controlの同時押下(マウスカーソルが十字アイコンに)。 Space押下でカーソルがカメラアイコンに変わるので、キャプチャしたいウインドウをクリックする。
  • クリップボードに画面キャプチャーが保存される。

#5. 矩形選択→ファイルに保存

  • Command + Shift + 4の同時押下(マウスカーソルが十字アイコンに)。キャプチャしたい領域をドラック指定してクリックする。
  • デフォルトではDesktop.pngで保存される。

#6. 矩形選択→クリップボードに保存

  • Command + Shift + 4 + Controlの同時押下(マウスカーソルが十字アイコンに)。キャプチャしたい領域をドラック指定してクリックする。
  • クリップボードに画面キャプチャーが保存される。

#7. 備忘録
##7-1. 保存場所の変更

  • デフォルトではDesktopに保存されますが、ターミナルから任意のディレクトリに変更可能です。
bash
# 保存先を~/Pictures/に変更
$ defaults write com.apple.screencapture location ~/Pictures/ 
# サービス再起動で変更が反映
$ killall SystemUIServer
# デフォルトに戻す
$ defaults delete com.apple.screencapture location

##7-2. 保存形式の変更

  • デフォルトでは.pngで保存されますが、ターミナルから任意のファイル形式に変更可能です。
bash
# BMP
$ defaults write com.apple.screencapture type bmp
# GIF
$ defaults write com.apple.screencapture type gif
# JPEG
$ defaults write com.apple.screencapture type jpg
# PDF
$ defaults write com.apple.screencapture type pdf
# TIFF
$ defaults write com.apple.screencapture type tiff
# PNG(デフォルト)
$ defaults write com.apple.screencapture type png
# サービス再起動で変更が反映
$ killall SystemUIServer
1
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?