-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimageManipulation.py
26 lines (22 loc) · 1.03 KB
/
imageManipulation.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
from PIL import Image
from tkinter import filedialog
def resizeImage(im, filtr, width, height, skipdialog=False):
if filtr == "Nearest Neighbour":
image = im.resize((width, height), Image.NEAREST) # nearest neighbour
elif filtr == "Bilinear":
image = im.resize((width, height), Image.BILINEAR) # bilinear interpolation
elif filtr == "Bicubic":
image = im.resize((width, height), Image.BICUBIC) # bicubic interpolation
elif filtr == "Anti-Alias":
image = im.resize((width, height), Image.ANTIALIAS) # antialiasing
if skipdialog:
file = (filtr + ".png")
else:
myFormats = [('Portable Network Graphics (.png)', '*.png'),
('JPEG / JFIF (.jpg)', '*.jpg'),
('Windows Bitmap (.bmp)', '*.bmp'),
('CompuServer GIF (.gif)', '*.gif')]
file = filedialog.asksaveasfilename(defaultextension=".png", filetypes=myFormats)
if file:
image.save(file)
return file