1
- import pyqrcode
2
- import png
1
+ import qrcode
3
2
from tkinter import *
3
+ from tkinter import filedialog
4
+ import os
4
5
5
6
6
7
# This Function is responsible to take the input -> Convert it to Image Code -> Convert Image code to png.
7
8
def get_code ():
8
9
data_var = data .get ()
9
- qr = pyqrcode .create (str (data_var ))
10
- qr .png ('code.png' , scale = 6 )
10
+ qr = qrcode .make (str (data_var ))
11
+ # This will ask for the directory the user wants to store the code and save it there.
12
+ base .loc = filedialog .askdirectory ()
13
+ os .chdir (base .loc )
14
+ save_as = name_to_save .get ()
15
+ label = Label (base , text = "Done" , bg = "red" )
16
+ label .place (x = 80 , y = 150 )
17
+ qr .save (f"{ save_as } .png" )
18
+
11
19
12
20
#Get a Tk window of 400 * 200
13
21
base = Tk ()
@@ -16,10 +24,19 @@ def get_code():
16
24
17
25
# variable to store text for QR Code
18
26
data = StringVar ()
19
-
27
+ name_to_save = StringVar ()
20
28
# Field to input text
29
+ # Get the name to be saved as
30
+ label_1 = Label (base , text = "SAVE_AS" ).place (x = 80 , y = 10 )
31
+ dataEntry = Entry (textvariable = name_to_save , width = "30" )
32
+ dataEntry .place (x = 80 ,y = 30 )
33
+
34
+ # What is suppose to be in the qrcode when scanned
35
+ label_1 = Label (base , text = "INSIDE QRCODE" ).place (x = 80 , y = 50 )
36
+
21
37
dataEntry = Entry (textvariable = data , width = "30" )
22
- dataEntry .place (x = 80 ,y = 50 )
38
+ dataEntry .place (x = 80 ,y = 70 )
39
+
23
40
24
41
# Call get_code() on click
25
42
button = Button (base ,text = "Get Code" ,command = get_code ,width = "30" ,height = "2" ,bg = "grey" )
0 commit comments