forked from kishanrajput23/Java-Projects-Collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconverter_GUI.py
40 lines (32 loc) · 1.43 KB
/
converter_GUI.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
import tkinter as tk
from tkinter import filedialog
from PIL import Image
root = tk.Tk() # Tkinter window initialized
root.title('Converter') # Title of the window
canvas1 = tk.Canvas(root, width=300, height=250, bg='orange', relief='raised')
canvas1.pack()
label1 = tk.Label(root, text='File Converter', bg='lightsteelblue2') # giving a title to the screen
label1.config(font=('helvetica', 20))
canvas1.create_window(150, 60, window=label1)
im1 = None # variable to store path of image
def getJPG():
'''Function to get image location and open it with pillow'''
global im1
import_file_path = filedialog.askopenfilename()
im1 = Image.open(import_file_path)
font = ('helvetica', 12, 'bold')
bg = 'royalblue'
fg = 'white'
browseButton_JPG = tk.Button(text=" Import JPEG File ", command=getJPG, bg=bg, fg=fg, font=font) # Browse button
canvas1.create_window(150, 130, window=browseButton_JPG)
def convertToPNG():
'''Function to change file extenstion to png and save it to User's prefered location '''
global im1
if im1 is None:
tk.messagebox.showerror("Error", "No File selected")
else:
export_file_path = filedialog.asksaveasfilename(defaultextension='.png')
im1.save(export_file_path)
saveAsButton_PNG = tk.Button(text='Convert JPEG to PNG', command=convertToPNG, bg=bg, fg=fg, font=font) # Convert button
canvas1.create_window(150, 180, window=saveAsButton_PNG)
root.mainloop()