Scrot

Lubuntu punya aplikasi standar untuk merekam tampilan layar, namanya scrot. Berbeda dengan sepupunya gnome-screenshot, scrot mesti dijalankan lewat terminal. Begini caranya.

Penggunaan

Format:

scrot [option] [file]

Contoh:

scrot screenshot.png

Seluruh tampilan layar akan terekam dan disimpan dalam file screenshot.png. Nama file tidak harus screenshot, bisa nama lain. Jenis ekstensi file juga tak harus .png, bisa juga pakai .jpg.

Setiap kali merekam, gunakan nama file yang berbeda, misal sc01.png, sc02.png, sc03.png, dst. Jika tidak, gambar hasil rekaman sebelumnya akan hilang.

Merekam bagian tertentu

-s, --select
Interactively select a window or rectangle with the mouse.

Format:

scrot -s file

Contoh:

scrot -s screenshot.png

lalu klik window yang ingin direkam, atau klik dan drag mouse untuk memilih area tertentu yang ingin direkam.

Merekam window yang aktif

-u, --focused
Use the currently focused window.

Format:

scrot -u file

Contoh:

scrot -u screenshot.png

Kualitas gambar

-q, --quality NUM
Image quality (1-100) high value means high size, low compression. Default: 75. (Effect differs depending on file format chosen).

Format:

scrot -q NUM file

Contoh:

scrot -q 100 screenshot.png

Contoh lain (kombinasi):

scrot -sq 100 screenshot.png

Kombinasi

Ini kombinasi favorit saya…

scrot -q 100 -ucd 5 screenshot.png
Taking shot in 5.. 4.. 3.. 2.. 1.. 0.

Gunakan jeda waktu 5 detik untuk mengaktifkan window yang ingin direkam. Kalau terlalu cepat, bisa diganti dengan angka lain yang lebih besar.

-q, --quality NUM

Image quality (1-100) high value means high size, low compression. Default: 75. (Effect differs depending on file format chosen).

-u, --focused
Use the currently focused window.

-c, --count
Display a countdown when used with delay.

-d, --delay NUM
Wait NUM seconds before taking a shot.

Opsi lain

Selain -qucd, masih banyak opsi lainnya. Berikut ini daftar selengkapnya.

OPTIONS
-h, --help
     display help output and exit.

-v, --version
     output version information and exit.

-b, --border
     When selecting a window, grab wm border too

-c, --count
     Display a countdown when used with delay.

-d, --delay NUM
     Wait NUM seconds before taking a shot.

-e, --exec APP
     Exec APP on the saved image.

-q, --quality NUM
     Image quality (1-100) high value means high size, low compression. Default: 75. (Effect differs depending on file format chosen).

-m, --multidisp
     For multiple heads, grab shot from each and join them together.

-s, --select
     Interactively select a window or rectangle with the mouse.

-u, --focused
     Use the currently focused window.

-t, --thumb NUM
     generate thumbnail too. NUM is the percentage of the original size for the thumbnail to be.

-z, --silent
     prevent beeping.

Selamat mencoba, semoga bermanfaat.

Leave a comment