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 Oct 13, 2024
1 parent 8024f00 commit 91d1616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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.Resampling.NEAREST)
for image in images]

# Create canvas for the final image with total size
Expand Down

0 comments on commit 91d1616

Please sign in to comment.