スクリーンショットの保存場所は?

OS10.5.8の時はスクリーンショットの画像はデスクトップに保存されましたが、

10.7.2に変えてから撮った時の音は鳴りますが、どこに保存されているか分かりません。


どこに保存されているのか?または探し方を教えて下さい。

iMac, Mac OS X (10.5.8)

投稿日 2012/01/19 04:00

返信
返信: 18

2012/01/19 13:33 なずな への返信

Formatの変更をするShell Script...

Screen_Shot_format

#! /bin/bash

echo "png bmp exr gif jp2 jpg pdf psd tga tif?"; read Answer

if [ "$Answer" = "" ]; then say "do nothing"; exit

else defaults write com.apple.screencapture type $Answer; killall SystemUIServer

say "$Answer"

fi

exit 0


Defaulのpngに戻す

defaults delete com.apple.screencapture type; killall SystemUIServer


# exr, p2, jpg, pdf, tif: TIFFはPreview.appのFile - Export…で変更出来る。Lionではpictとsqiは使えない。


保存場所の変更は... # Default: Desktop

defaults write com.apple.screencapture location ~/Desktop; killall SystemUIServer

defaults write com.apple.screencapture location ~/Documents; killall SystemUIServer


Clipboardに入れる方法...

Shift+Command+Control+3 (4)でClipboardにScreen Shotを入れられる。


Shadowを表示させない...

defaults write com.apple.screencapture disable-shadow -bool true; killall SystemUIServer

defaults delete com.apple.screencapture disable-shadow; killall SystemUIServer


TerminalでScreen Shotを...

screencapture -t png ~/Desktop/Screen\ Shot.png

screencapture -t pdf ~/Desktop/Screen\ Shot.pdf

screencapture -t jpg ~/Desktop/Screen\ Shot.jpg

2012/01/19 17:49 なずな への返信

リスト以外の答えのError処理です。

# Lionで確認しましたがSnow Leopard, Leopardだと使えるFormatが増えるかも知れません。


Screen_Shot_Format

#! /bin/bash

echo "png bmp exr gif jp2 jpg pdf psd tga tif?"; read Answer

case $Answer in

png) defaults delete com.apple.screencapture type; killall SystemUIServer; say "portable network graphics image";;

bmp) defaults write com.apple.screencapture type bmp; killall SystemUIServer; say "windows bitmap image";;

exr) defaults write com.apple.screencapture type exr; killall SystemUIServer; say "openEXR image";;

gif) defaults write com.apple.screencapture type gif; killall SystemUIServer; say "graphics interchange format";;

jp2) defaults write com.apple.screencapture type jp2; killall SystemUIServer; say "jpeg 2000 image";;

jpg) defaults write com.apple.screencapture type jpg; killall SystemUIServer; say "jpeg image";;

pdf) defaults write com.apple.screencapture type pdf; killall SystemUIServer; say "portable document format";;

psd) defaults write com.apple.screencapture type psd; killall SystemUIServer; say "adobe photoshop document";;

tga) defaults write com.apple.screencapture type tga; killall SystemUIServer; say "tga image";;

tif) defaults write com.apple.screencapture type tif; killall SystemUIServer; say "tiff imager";;

*) say "do nothing";;

esac

exit 0

このスレッドはシステム、またはAppleコミュニティチームによってロックされました。 問題解決の参考になる情報であれば、どの投稿にでも投票いただけます。またコミュニティで他の回答を検索することもできます。

スクリーンショットの保存場所は?

Apple サポートコミュニティへようこそ
Apple ユーザ同士でお使いの製品について助け合うフォーラムです。Apple Account を使ってご参加ください。