Skip to content

Commit

Permalink
Update generate-overview.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jomjol authored Mar 30, 2024
1 parent 83ec29f commit f3069f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generate-overview.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def concat_images(image_paths, size, shape=None):
images = [ImageOps.expand(image, border=10,fill='white')
for image in images]

images = [ImageOps.fit(image, size, Image.ANTIALIAS)
images = [ImageOps.fit(image, size, Image.LANCZOS)
for image in images]

# Create canvas for the final image with total size
Expand Down Expand Up @@ -66,4 +66,4 @@ def generate(path, prefix, cols):


if __name__ == "__main__":
main()
main()

0 comments on commit f3069f8

Please sign in to comment.