Fix smooth brain sizing bug

This commit is contained in:
spengreb 2021-02-08 19:10:41 +01:00
parent 186f4e2054
commit 6cbf103118

View file

@ -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))