====== Linux Screenshot ======
* [[linux:gimp:screenshot|GIMP Screenshot]]
* [[linux:flameshot|flameshot]]
* [[linux:shutter|Shutter]]
* [[linux:ksnip|ksnip]]
* [[linux:gnome:gnome_screenshot|Gnome Screenshot]]
* [[http://tips.webdesign10.com/how-to-take-a-screenshot-with-ubuntu-linux|How to Take a Screenshot in Linux (Ubuntu)]]
* [[https://wiki.archlinux.org/index.php/Taking_a_screenshot|Taking a screenshot]]
* [[https://wiki.archlinux.org/title/Screen_capture|Screen capture - ArchWiki]]
===== ImageMagick =====
''import'' 명령으로 창 별로 screenshot 가능.
# 영역 지정해 찍기, 바로 클릭시 창선택됨.
import filename.png
===== scrot =====
sudo apt-get install scrot
# 전체화면찍기 - 날짜와 시간으로 파일 생성함.
scrot
# 사각 영역 선택해서 찍기
scrot -s
# 찍은 뒤에 바로 보기 : gthumb은 이미지 뷰어
scrot --exec 'gthumb $f'