Closed CathyZhou0120 closed 4 years ago
In PIL there is a crop function which does not give the same resolution as a screenshot, just want to see if pyscreenshot will give the same resolution as a manual screenshot?
PIL
crop
pyscreenshot
There is no crop function in pyscreenshot. Resolution should be the requested value.
# grab fullscreen im = ImageGrab.grab() # part of the screen im = ImageGrab.grab(bbox=(10, 10, 510, 510)) # X1,Y1,X2,Y2
In
PIL
there is acrop
function which does not give the same resolution as a screenshot, just want to see ifpyscreenshot
will give the same resolution as a manual screenshot?