Fix smooth brain sizing bug
This commit is contained in:
parent
186f4e2054
commit
6cbf103118
1 changed files with 0 additions and 1 deletions
1
main.py
1
main.py
|
|
@ -80,7 +80,6 @@ def save_img(img, color, symbol):
|
||||||
print('Created card {} {}'.format(color, symbol))
|
print('Created card {} {}'.format(color, symbol))
|
||||||
sizes = ['50', '25']
|
sizes = ['50', '25']
|
||||||
img.save(filename='output/card-{}-{}.png'.format(color, symbol))
|
img.save(filename='output/card-{}-{}.png'.format(color, symbol))
|
||||||
img.resize(int(img.width / 2), int(img.height / 2))
|
|
||||||
for size in sizes:
|
for size in sizes:
|
||||||
img.resize(int(img.width / 2), int(img.height / 2))
|
img.resize(int(img.width / 2), int(img.height / 2))
|
||||||
img.save(filename='output/card-{}-{}-{}.png'.format(color, symbol, size))
|
img.save(filename='output/card-{}-{}-{}.png'.format(color, symbol, size))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue