-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpng to jpg.py
33 lines (23 loc) · 1.04 KB
/
png to jpg.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
import tkinter as tk
from tkinter import filedialog
from tkinter import messagebox
from PIL import Image
root= tk.Tk()
canvas1 = tk.Canvas(root, width = 300, height = 250, bg = 'azure3', relief = 'raised')
canvas1.pack()
label1 = tk.Label(root, text='File Conversion Tool', bg = 'azure3')
label1.config(font=('helvetica', 20))
canvas1.create_window(150, 60, window=label1)
def getPNG ():
global im1
import_file_path = filedialog.askopenfilename()
im1 = Image.open(import_file_path)
browseButton_PNG = tk.Button(text=" Import PNG File ", command=getPNG, bg='royalblue', fg='white', font=('helvetica', 12, 'bold'))
canvas1.create_window(150, 130, window=browseButton_PNG)
def convertToJPG ():
global im1
export_file_path = filedialog.asksaveasfilename(defaultextension='.jpg')
im1.save(export_file_path)
saveAsButton_JPG = tk.Button(text='Convert PNG to JPG', command=convertToJPG, bg='royalblue', fg='white', font=('helvetica', 12, 'bold'))
canvas1.create_window(150, 180, window=saveAsButton_JPG)
root.mainloop()