Почему код перестал работать?
Еще вчера код резал фото, а сегодня перестал. Ошибок никаких нет.
При открытии консоли она снова закрывается.
Pillow установлен.
Скриншот фрагмента кода удален модератором.
from PIL import Image
# 92x85
im = Image.open("1.jpg")
top = 408
left = 479
top_down = 918
left_right = 948
im = im.crop((left, top, left_right, top_down))
count_width = 6
count_height = 5
x, y = im.size # width (x) и height (y) image
num = 0
num_c = 0
plus_w = 0
plus_h = 0
for i in range(count_width):
for j in range(count_height):
if i!=count_width and j!=count_height:
num = num + 1
# print(num)
# print(num)
# print('------')
if(i > 1 and i < 2):
plus_w = 3
if(j > 1 and j < 2):
plus_h = 3
top = y/count_width*i+plus_w
left = x/count_height*j+plus_h
left_right = x/count_height*(j+1)-1+plus_h
top_down = y/count_width*(i+1)-1+plus_w
r_img = im.crop(box=(left, top, left_right, top_down))
r_img.save('image{}.jpg'.format(num))
input('Press ENTER to exit')
Спасибо за ответ!