Merge pull request #7945 from w-e-w/fix-image-downscale

Fix broken image downscale TypeError
This commit is contained in:
AUTOMATIC1111 2023-02-20 14:45:54 +03:00 committed by GitHub
commit 0cc0ee1bcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -582,9 +582,9 @@ def save_image(image, path, basename, seed=None, prompt=None, extension='png', i
ratio = image.width / image.height
if oversize and ratio > 1:
image = image.resize((opts.target_side_length, image.height * opts.target_side_length // image.width), LANCZOS)
image = image.resize((round(opts.target_side_length), round(image.height * opts.target_side_length / image.width)), LANCZOS)
elif oversize:
image = image.resize((image.width * opts.target_side_length // image.height, opts.target_side_length), LANCZOS)
image = image.resize((round(image.width * opts.target_side_length / image.height), round(opts.target_side_length)), LANCZOS)
try:
_atomically_save_image(image, fullfn_without_extension, ".jpg")