This commit is contained in:
bakatrouble 2023-03-30 20:53:02 +03:00
parent 710669cd1c
commit cc7d8d0a86

12
main.py
View File

@ -64,12 +64,12 @@ async def check_updates():
thumb=post.preview.url,
caption=caption)
elif post.file.ext in ('png', 'jpg'):
file_resized = BytesIO()
im = Image.open(file)
im.thumbnail((2048, 2048), Image.LANCZOS)
im.save(file_resized, format='JPEG')
im.name = 'file.jpg'
im.seek(0)
if post.file.size > 10000000:
im = Image.open(file)
im.thumbnail((2048, 2048), Image.LANCZOS)
file.truncate(0)
im.save(file, format='JPEG')
im.seek(0)
await bot.send_photo(int(os.environ['SEND_CHAT']),
file_resized,
caption=caption)