fd
This commit is contained in:
parent
359620464e
commit
65ad328b17
1 changed files with 14 additions and 14 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue