-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextAndImageViewer.py
46 lines (37 loc) · 1.38 KB
/
TextAndImageViewer.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
41
42
43
44
45
46
from tkinter import *
from PIL import Image, ImageTk
import time
root=Tk()
root.wm_title("TEXTS")
root.config(background="#FFFFFF")
root.geometry("1400x600")
leftFrame=Frame(root, width=900, height=600, background="Yellow")
leftFrame.grid(row=0, column=0)
rightFrame=Frame(root, width=500, height=600, background="Yellow")
rightFrame.grid(row=0, column=1)
text1=Label(rightFrame, text="READ TEXTS", font=('times', 20, 'bold'))
text1.config(bg='yellow', fg='black')
text1.grid(row=0, column=0, padx=2, pady=2)
text2=Label(rightFrame, text="SAVED TEXTS", font=('times', 20, 'bold'))
text2.config(bg='yellow', fg='black')
text2.grid(row=2, column=0, padx=2, pady=2)
colorLog1=Text(rightFrame, width=37, height=10, takefocus=0, font=('times', 18))
colorLog1.grid(row=1, column=0, padx=10, pady=10)
colorLog2=Text(rightFrame, width=37, height=5, takefocus=0, font=('times', 18))
colorLog2.grid(row=3, column=0, padx=10, pady=10)
fr=open("texts.txt", "r")
str1=fr.read()
str2=str1.split('_')
colorLog2.insert(0.0, str2[0]+"\n")
colorLog2.insert(0.0, str2[1]+"\n")
colorLog2.insert(0.0, str2[2]+"\n")
def my_mainloop():
s1=time.asctime()
print("Text")
colorLog1.insert(0.0, "Text "+s1+"\n")
root.after(1000, my_mainloop)
image=Image.open("image.jpg")
photo=ImageTk.PhotoImage(image)
l1=Label(leftFrame, image=photo, height=600, width=900).pack()
root.after(1000, my_mainloop)
root.mainloop()