web-dev-qa-db-ja.com

スクリーンショットを撮る端末コマンドは何ですか?

ターミナルで使用できるコマンドと同等のコマンド PrtSc (画面の印刷)ボタン?

Ubuntu GNOMEを実行しています。

115
devav2

このオプションが見つかりました here およびその他のオプションもリストされています。

を押してterminalを開きます Ctrl + Alt + T そしてタイプ

gnome-screenshot

gnome-screenshot -d xxを使用して、アクションを遅延させます。

スクリーンショットアクションを10秒遅らせるには

gnome-screenshot -d 10

または

sleep 10;gnome-screenshot
52
devav2

ImageMagickパッケージで利用可能なimportツールを使用できます(システムで利用できない場合はインストールする必要があります)。

シェルで次のコマンドを実行します。

import screenshot.png

キャプチャするウィンドウを選択するか、マウスの左ボタンを押してドラッグして領域を選択します。

importは実際には非常に強力なコマンドであり、多くの方法で画面をキャプチャするために使用できます。たとえば、画面全体をキャプチャし、しばらくしてからサイズを変更するには、次のコマンドを使用します。

import -window root -resize 400x300 -delay 200 screenshot.png

Importコマンドで使用可能なすべてのオプションを確認するには、 ImageMagickのWebサイト に移動します。

端末からスクリーンショットを撮る別の方法は、scrot

scrot をインストールするには:

Sudo apt-get install scrot

Linuxでscrotタイプのターミナルからスクリーンショットを撮るには:

scrot MyScreenshot.png

scrotのその他のオプションは次のとおりです。

scrot -b -d 5 '%Y:%m:%d:%H:%M:%S.png' -e 'mv $f ~/Desktop/'

この例では、

  • -bは、ウィンドウの境界を含めることを指定します
  • -dは、5秒の遅延を指定します
  • '%Y:%m:%d:%H:%M:%S.png'は、現在の日時に基づいた名前と指定された形式(この場合は.png)でスクリーンショットを保存します
  • -e 'mv $f ~/Desktop/'は、スクリーンショットをデスクトップに保存するようにscrotに指示します
103
user61928

shutterプログラムを使用して端末からスクリーンショットを取得できます。端末で以下のコマンドを実行してシャッターをインストールします。

Sudo add-apt-repository ppa:shutter/ppa
Sudo apt-get update
Sudo apt-get install shutter

アクティブなウィンドウのスクリーンショットを撮るには、

shutter -a -o shot.png -e

ディスプレイ全体のスクリーンショットを撮るには、

shutter -f -o shot.png -e

撮影したスクリーンショットはhomeディレクトリに保存されます。

その他のオプションについては、shutter --helpコマンドを実行してください。

Usage:
    shutter [options]

Options:
    Example 1
            shutter -a -p=myprofile --min_at_startup

    Example 2
            shutter -s=100,100,300,300 -e

    Example 3
            shutter --window=.*firefox.*

    Example 4
            shutter --web=http://shutter-project.org/ -e

  Capture Mode Options:
    -s, --select=[X,Y,WIDTH,HEIGHT]
            Capture an area of the screen. Providing X,Y,WIDTH,HEIGHT is
            optional.

    -f, --full
            Capture the entire screen.

    -w, --window=[NAME_PATTERN]
            Select a window to capture. Providing a NAME_PATTERN (Perl-style
            regex) ist optional.

    -a, --active
            Capture the current active window.

    --section
            Capture a section. You will be able to select any child window
            by moving the mouse over it.

    -m, --menu
            Capture a menu.

    -t, --tooltip
            Capture a tooltip.

    --web=[URL]
            Capture a webpage. Providing an URL ist optional.

    -r, --redo
            Redo last screenshot.

  Settings Options:
    -p, --profile=NAME
            Load a specific profile on startup.

    -o, --output=FILENAME
            Specify a filename to save the screenshot to (overwrites any
            profile-related setting).

            Supported image formats: You can save to any popular image
            format (e.g. jpeg, png, gif, bmp). Additionally it is possible
            to save to pdf, ps or svg.

            Please note: There are several wildcards available, like

             %Y = year
             %m = month
             %d = day
             %T = time
             $w = width
             $h = height
             $name = multi-purpose (e.g. window title)
             $nb_name = like $name but without blanks in resulting strings
             $profile = name of current profile
             $R = random char (e.g. $RRRR = ag4r)
             %NN = counter

            The string is interpretted by strftime. See "man strftime" for
            more examples.

            As an example: shutter -f -e -o './%y-%m-%d_$w_$h.png' would
            create a file named '11-10-28_1280_800.png' in the current
            directory.

  Application Options:
    -h, --help
            Prints a brief help message and exits.

    -v, --version
            Prints version information.

    -d, --debug
            Prints a lot of debugging information to STDOUT.

    --clear_cache
            Clears cache, e.g. installed plugins, at startup.

    --min_at_startup
            Starts Shutter minimized to tray.

    --disable_systray
            Disables systray icon.

    -e, --exit_after_capture
            Exit after the first capture has been made. This is useful when
            using Shutter in scripts.
13
Avinash Raj

ImageMagickimportを使用してみましたが、KDEデスクトップエフェクトを使用する場合は機能しませんでした。 ImageMagickimportは、前景のアルファと背景を適切に組み合わせる代わりに、透明なウィンドウの境界線を黒で出力します。

また、X11xwdおよびNetPBMxwdtopnmを使用しようとしましたが、これもうまくいきませんでしたNetPBMxwdtopnm Xineramaのセットアップがあるため、xwdのマルチスクリーン出力を適切に処理できませんでした。

しかし、X11xwdImageMagickconvertを組み合わせると、うまく機能しました。

xwd -silent -root | convert xwd:- screenshot.png

または、私のようなDual-FullHD Xineramaのセットアップがあり、最初の画面のみが必要な場合:

xwd -silent -root | convert xwd:- -crop 1920x1080+0+0 test.png

2番目の画面のみ:

xwd -silent -root | convert xwd:- -crop 1920x1080+1920+0 +repage test.png
8
Christian Hujer

ログイン端末(スクリーンショットで開くもの)からスクリーンショットを撮りたい場合 Ctrl+Alt+F1)プログラムfbgrabを使用できます。

Sudo apt-get install fbcatと入力してインストールできます。

次に、ログイン端末のスクリーンショットを撮り、ログイン端末を入力します。

$ Sudo fbgrab my_screenshot

my_screenshotは現在のディレクトリの下に保存されます。

7
user2376000

私はubuntu 13.10を使用していますが、たった今書いたスクリプトがあります。この質問には回答がありますが、ソリューションに追加のインストールは必要ありません。

#!/bin/bash
curDate=$(date)
imgExtension=".png"
imgName=$curDate$imgExtension
imgDirectory="/path/to/desires/save/directory/"
imgSavePath=$imgDirectory$imgName
gnome-screenshot --file="$imgSavePath"

このコードは、ダイアログウィンドウをポップアップせずにスクリーンショットを保存します。ファイル名の重複を避けるため、ファイル名に現在の時刻を使用します。

4
Gary Hutchinson