Skip to content

Commit

Permalink
convert resolution to int using round()
Browse files Browse the repository at this point in the history
  • Loading branch information
w-e-w committed Feb 20, 2023
1 parent 65995a2 commit f71a3c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,9 +582,9 @@ def _atomically_save_image(image_to_save, filename_without_extension, extension)
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")
Expand Down

0 comments on commit f71a3c9

Please sign in to comment.