Script Bash para tirar screenshots e salvar a imagem - Ubuntu

5

Eu escrevi um script bash como abaixo:

#!/bin/bash
echo "Enter a file name"
read filename
import -window root $HOME/Desktop/$filename.png

Eu esperava que esse script fizesse uma captura de tela e salvasse a imagem com o nome de arquivo fornecido na minha área de trabalho.

Problema: Meu terminal do Ubuntu está dando erro:

  

import: Comando não encontrado

    
por Prabhu Kl 18.10.2012 / 09:48

3 respostas

8

Você precisa instalar o pacote imagemagic para usar o comando import.

sudo apt-get install imagemagick

imagemagick

Isso permitirá que você use o comando import . Experimente também o pacote graphicsmagick-imagemagick-compat .

outras alternativas para importar são

  • scrot

    Para instalar o scrot: sudo aptitude install scrot

scrot

usage: 'scrot screen.png'
  • gnome-screenshot
  

sudo aptitude install gnome-captura de tela

captura de tela do gnome

    
por devav2 18.10.2012 / 09:52
5

Você pode usar a melhor ferramenta de captura de tela obturador < img src="https://hostmar.co/software-small"> para uso em scripts também! E acredito que esta é a ferramenta mais poderosa e oferece as opções mais avançadas e ajustadas para usar em scripts.

Instale-o com o comando em um terminal

sudo apt-get install shutter

ou usando o centro de software (clicando no grande botão abaixo)

Depois da instalação, use este comando para tirar uma captura de tela de todo o display e salvar a captura de tela em um arquivo chamado, myshot.png

shutter -f -o myshot.png -e
  • O -f diz ao obturador para fazer uma captura de tela de todo o display. Você também pode usar -a para fazer uma captura de tela da janela ativa ou pedir que ela tire uma foto de uma janela específica.

  • A opção -o é usada para informar ao obturador o nome do arquivo de saída. Você poderia especificar qualquer nome de arquivo

  • A opção e faz com que o obturador saia depois de capturar a captura de tela.

A saída de shutter --help é fornecida abaixo para referência.

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.
    
por Anwar 18.10.2012 / 20:47
2

Para instalar o imagemagick, contendo o programa import , veja a outra resposta. No entanto, você também pode iniciar a captura de tela do gnome na linha de comando chamando gnome-screenshot . O applet irá tirar a captura de tela sem demora e mostrar uma caixa de diálogo para inserir um nome de arquivo:

    
por January 18.10.2012 / 09:59