-
Notifications
You must be signed in to change notification settings - Fork 341
/
Copy pathgenerate_example_thumbnails.py
51 lines (34 loc) · 1.25 KB
/
generate_example_thumbnails.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from pathlib import Path
from itertools import chain
from PIL import Image
def main():
input_path = Path('example_code/images')
output_path = Path('example_code/images/thumbs/')
png_input_files = input_path.glob('*.png')
gif_input_files = input_path.glob('*.gif')
modified_files = []
for input_file in chain(png_input_files, gif_input_files):
if out_of_date(input_file, output_path):
modified_files.append(input_file)
generate_thumbnails(modified_files, output_path)
def out_of_date(input_file, output_path):
"""Check if the thumbnail is out of date."""
output_file = output_path / input_file.name
if not output_file.exists():
return True
if input_file.stat().st_mtime > output_file.stat().st_mtime:
return True
else:
return False
def generate_thumbnails(input_files, output_path):
"""Generate thumbnails for the input files."""
size = 200, 158
output_path.mkdir(exist_ok=True)
for input_file in input_files:
print('Generating thumbnail: ' + input_file.name)
im = Image.open(input_file)
im.thumbnail(size)
im.save(output_path / input_file.name)
print("Done generating thumbnails.")
if __name__ == '__main__':
main()