forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-09-13 19:01:55 +02:00
parent 3d10c50fb8
commit 56c2638dea
1 changed files with 14 additions and 14 deletions

View File

@ -15,16 +15,16 @@ def upload_ibb(file=None, resize=False):
if file: file.save("image.webp")
if resize:
i = IImage.open("image.webp")
size = 100, 100
frames = ImageSequence.Iterator(i)
def thumbnails(frames):
for frame in frames:
if resize:
thumbnail = frame.copy()
thumbnail.thumbnail(100, 100, IImage.ANTIALIAS)
thumbnail.thumbnail(size, IImage.ANTIALIAS)
yield thumbnail
else: yield frame
frames = thumbnails(frames)