🐛 Fix post image crop size

This commit is contained in:
xtaodada 2024-09-13 20:31:29 +08:00
parent cdba5605a6
commit feb09b19fd
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659

View File

@ -50,7 +50,7 @@ class ArtworkImage(BaseModel):
width, height = image.size
crop_height = height
crop_num = 1
max_height = 10000 - width
max_height = 8000 - width
while crop_height > max_height:
crop_num += 1
crop_height = height / crop_num
@ -58,9 +58,9 @@ class ArtworkImage(BaseModel):
for i in range(crop_num):
slice_image = image.crop((0, crop_height * i, width, crop_height * (i + 1)))
bio = BytesIO()
slice_image.save(bio, "png")
slice_image.save(bio, "JPEG", quality=95)
kwargs["data"] = bio.getvalue()
kwargs["file_extension"] = "png"
kwargs["file_extension"] = "jpg"
new_data.append(ArtworkImage(*args, **kwargs))
return new_data
except UnidentifiedImageError: