2019-06-12 05:41:31 +00:00
|
|
|
import os
|
|
|
|
from PIL import Image
|
|
|
|
import sys
|
|
|
|
|
2020-02-05 03:34:39 +00:00
|
|
|
from voussoirkit import imagetools
|
2020-01-16 06:47:26 +00:00
|
|
|
from voussoirkit import winglob
|
|
|
|
|
2019-06-12 05:41:31 +00:00
|
|
|
filenames = sys.argv[1]
|
|
|
|
|
2020-01-16 06:47:26 +00:00
|
|
|
filenames = winglob.glob(filenames)
|
2019-06-12 05:41:31 +00:00
|
|
|
for filename in filenames:
|
|
|
|
i = Image.open(filename)
|
|
|
|
if all(x.isdigit() for x in sys.argv[2:3]):
|
|
|
|
new_x = int(sys.argv[2])
|
|
|
|
new_y = int(sys.argv[3])
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
ratio = float(sys.argv[2])
|
|
|
|
new_x = int(i.size[0] * ratio)
|
|
|
|
new_y = int(i.size[1] * ratio)
|
|
|
|
except ValueError:
|
|
|
|
print('you did it wrong')
|
|
|
|
quit()
|
|
|
|
|
|
|
|
(image_width, image_height) = i.size
|
|
|
|
|
|
|
|
if new_x == 0:
|
2020-02-05 03:34:39 +00:00
|
|
|
(new_x, new_y) = imagetools.fit_into_bounds(image_width, image_height, 10000000, new_y)
|
2019-06-12 05:41:31 +00:00
|
|
|
if new_y == 0:
|
2020-02-05 03:34:39 +00:00
|
|
|
(new_x, new_y) = imagetools.fit_into_bounds(image_width, image_height, new_x, 10000000)
|
2019-06-12 05:41:31 +00:00
|
|
|
|
|
|
|
print(i.size, new_x, new_y)
|
|
|
|
i = i.resize( (new_x, new_y), Image.ANTIALIAS)
|
|
|
|
suffix = '_{width}x{height}'.format(width=new_x, height=new_y)
|
|
|
|
(base, extension) = os.path.splitext(filename)
|
|
|
|
newname = base + suffix + extension
|
|
|
|
i.save(newname, quality=100)
|