Crop images so the system UI is not visible. Closes #25

This commit is contained in:
Kuba Orlik 2022-07-14 21:20:51 +02:00
parent 4b9993a8d3
commit 20195f8f6c

View File

@ -110,6 +110,7 @@ with Image.open(output_file) as im:
if len(found_needles) == 0:
exit(0)
os.remove(output_file)
im = im.crop((0, 24, 2880, 1588))
im = im.resize((im.width // 2, im.height // 2))
output_filename = domain.replace(".", "_") + "_" + output_suffix
im.save(output_dir + "/" + output_filename, "PNG")