We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a47cdf commit 64d338bCopy full SHA for 64d338b
1 file changed
scripts/thumbnail-images.py
@@ -9,12 +9,7 @@
9
10
max_size = 320, 160
11
12
-# Exclude these images from thumbnailing
13
-excludes = ["assets/signac.png"]
14
-
15
for infile in glob.glob("assets/*.png"):
16
- if infile in excludes:
17
- continue
18
im = Image.open(infile)
19
if im.width <= max_size[0] and im.height <= max_size[1]:
20
continue
0 commit comments