スクリーンショットの保存場所は?
OS10.5.8の時はスクリーンショットの画像はデスクトップに保存されましたが、
10.7.2に変えてから撮った時の音は鳴りますが、どこに保存されているか分かりません。
どこに保存されているのか?または探し方を教えて下さい。
iMac, Mac OS X (10.5.8)
OS10.5.8の時はスクリーンショットの画像はデスクトップに保存されましたが、
10.7.2に変えてから撮った時の音は鳴りますが、どこに保存されているか分かりません。
どこに保存されているのか?または探し方を教えて下さい。
iMac, Mac OS X (10.5.8)
ファイル形式も設定できるんですね🙂
そんな便利なシェアウェアがあるって知りませんでした。
早速SnapzPro見てみます♪
あと、今スクリーンショットで撮ったファイル名は
「スクリーンショット 2012-01-20 0.02.16」
となりました。
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
リスト以外の答えの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
スクリーンショットの保存場所は?