From 6cbf103118ad86c6fc1f7fa98a48cb72da007d68 Mon Sep 17 00:00:00 2001 From: spengreb Date: Mon, 8 Feb 2021 19:10:41 +0100 Subject: [PATCH] Fix smooth brain sizing bug --- main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/main.py b/main.py index cf54001..ff94bb3 100755 --- a/main.py +++ b/main.py @@ -80,7 +80,6 @@ def save_img(img, color, symbol): print('Created card {} {}'.format(color, symbol)) sizes = ['50', '25'] img.save(filename='output/card-{}-{}.png'.format(color, symbol)) - img.resize(int(img.width / 2), int(img.height / 2)) for size in sizes: img.resize(int(img.width / 2), int(img.height / 2)) img.save(filename='output/card-{}-{}-{}.png'.format(color, symbol, size))