Bantal Python memotong gambar menjadi dua

from PIL import Image

original = Image.open(test_image)

width, height = original.size

wid = int(width / 2)

img = original.crop((0, 0, wid, height))

img.show()
Filthy Finch