Page 1 of 1

Take partial screenshot with import

Posted: 2016-08-17T01:43:27-07:00
by netteli
Is there way to take only partial screenshot with import (only top left corner)?

Code: Select all

import -w root topleftcorner.png

Re: Take partial screenshot with import

Posted: 2016-08-17T23:46:36-07:00
by vonbiber
on my linux system I would do it this way
(my screen size is 1600 x 900)

Code: Select all

W=1600
H=900
w=$((W/2))
h=$((H/2))

import -w root -crop +${w}-$h +repage TopLeftCorner.png