fd
This commit is contained in:
parent
ba6a6282e6
commit
884fe9d36b
1 changed files with 4 additions and 0 deletions
|
@ -34,12 +34,14 @@ def upload_ibb(filepath=None, file=None, resize=False):
|
||||||
|
|
||||||
om = next(frames)
|
om = next(frames)
|
||||||
om.info = i.info
|
om.info = i.info
|
||||||
|
filepath = f"image.{i.format}"
|
||||||
try: om.save(filepath, save_all=True, append_images=list(frames), loop=0, optimize=True, quality=30)
|
try: om.save(filepath, save_all=True, append_images=list(frames), loop=0, optimize=True, quality=30)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(e)
|
print(e)
|
||||||
return
|
return
|
||||||
elif format != "gif":
|
elif format != "gif":
|
||||||
i = IImage.open(filepath)
|
i = IImage.open(filepath)
|
||||||
|
filepath = f"image.{i.format}"
|
||||||
i.save(filepath, optimize=True, quality=30)
|
i.save(filepath, optimize=True, quality=30)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -84,12 +86,14 @@ def upload_imgur(filepath=None, file=None, resize=False):
|
||||||
|
|
||||||
om = next(frames)
|
om = next(frames)
|
||||||
om.info = i.info
|
om.info = i.info
|
||||||
|
filepath = f"image.{i.format}"
|
||||||
try: om.save(filepath, save_all=True, append_images=list(frames), loop=0, optimize=True, quality=30)
|
try: om.save(filepath, save_all=True, append_images=list(frames), loop=0, optimize=True, quality=30)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(e)
|
print(e)
|
||||||
return
|
return
|
||||||
elif format != "gif":
|
elif format != "gif":
|
||||||
i = IImage.open(filepath)
|
i = IImage.open(filepath)
|
||||||
|
filepath = f"image.{i.format}"
|
||||||
i.save(filepath, optimize=True, quality=30)
|
i.save(filepath, optimize=True, quality=30)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue