-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresize.py
38 lines (27 loc) · 908 Bytes
/
resize.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
#!/usr/bin/env python
# coding: utf-8
# In[2]:
from PIL import Image
import os
import sys
# Resize Function
def resize_image(width=800,hieght=600,path_to_images=os.getcwd(),working_dir=os.getcwd()):
'''
Args:
path_to_images: string, path to images directory
working_dir: path to the working directory if working directory differs than images directory
size: new images size
'''
for img in os.listdir(path_to_images):
directory = path_to_images + img
image = Image.open(directory)
image = image.resize((int(width),int(hieght)))
if path_to_images == working_dir:
image.save(img)
else:
os.chdir(path_to_images)
image.save(img)
os.chdir(working_dir)
if __name__ == '__main__':
# Map command line arguments to function arguments.
resize_image(*sys.argv[1:])