-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main_Paluh.py
223 lines (158 loc) · 7.17 KB
/
Main_Paluh.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
from pathlib import Path
from tkinter import filedialog, Scrollbar, Canvas
import ttkbootstrap as ttk
from qtconsole.mainwindow import background
from ttkbootstrap.constants import *
from ttkbootstrap.dialogs import Messagebox
from util.util import Util
from PIL import Image, ImageTk
import fitz
CAMINHO_IMAGEM = Path(__file__).parent / 'res'
class Main_Paluh(ttk.Frame):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.caminhoArquivo=""
self.util = Util()
self.criarJanela()
def criarJanela(self):
x = (self.winfo_screenwidth() // 2) - (self.util.larguraTela // 2)
y = (self.winfo_screenheight() // 2) - (self.util.alturaTela // 2)
largura = self.winfo_screenwidth()
altura = self.winfo_screenheight()
self.pack(fill=BOTH, expand=YES)
self.master.geometry("{}x{}+{}+{}".format(self.util.larguraTela, self.util.alturaTela, x, y))
#self.master.geometry("%dx%d" % (largura, altura))
self.master.title("Paluh - Privacidade Aluízio - Versão " + str(self.util.versao_0_1))
self.master.iconbitmap(CAMINHO_IMAGEM.__str__() + "\\Pouca-Sombra.ico")
self.photoimages = []
imgpath = Path(__file__).parent / 'res'
for key, val in self.util.arquivo_imagem.items():
_path = imgpath / val
self.photoimages.append(ttk.PhotoImage(name=key, file=_path))
# buttonbar
buttonbar = ttk.Frame(self, style='primary.TFrame')
buttonbar.pack(fill=X, pady=1, side=TOP)
## new backup
_func = lambda: self.showAbrirArquivo()
btn = ttk.Button(
master=buttonbar,
text='Abrir...',
image='abrir',
compound=LEFT,
command=_func
)
btn.pack(side=LEFT, ipadx=5, ipady=5, padx=(1, 0), pady=1)
## backup
_func = lambda: self.showSobre()
btn = ttk.Button(
master=buttonbar,
text='Sobre',
image='sobre',
compound=LEFT,
command=_func
)
btn.pack(side=LEFT, ipadx=5, ipady=5, padx=0, pady=1)
## refresh
_func = lambda: self.master.destroy()
btn = ttk.Button(
master=buttonbar,
text='Sair',
image='sair',
compound=LEFT,
command=_func
)
btn.pack(side=LEFT, ipadx=5, ipady=5, padx=0, pady=1)
# open pdf file
self.doc = None
# count number of pages
self.qtdPaginas = 0
#painel Esquerdo
self.painelEsquerdo = ttk.Frame(self, style='dander.TFrame')
self.painelEsquerdo.pack(side=ttk.LEFT, expand=True, fill=X)
# add scroll bar
#self.scrollbar = Scrollbar(self.painelEsquerdo)
#self.scrollbar.pack(side=RIGHT, fill=BOTH)
# add canvas
#self.canvas = Canvas(self.painelEsquerdo, yscrollcommand=self.scrollbar.set)
self.canvas = Canvas(self.painelEsquerdo)
#self.canvas.configure(height=self.painelEsquerdo.winfo_screenheight())
self.canvas.pack(side=LEFT, fill=BOTH, expand=True)
#painel Direito
self.painelDireito = ttk.Frame(self, style='danger.TFrame')
self.painelDireito.pack(side=RIGHT, fill=BOTH, expand=True)
textoOpcesBusca = "Opções de busca"
self.frameOpcoesBusca = ttk.Labelframe(self.painelDireito, text=textoOpcesBusca, bootstyle="dark")
self.frameOpcoesBusca.pack(fill=BOTH, expand=YES, anchor=N)
self.arquivSelecionado = ttk.Label(
text="Arquivo selecionado: ",
master=self.frameOpcoesBusca
)
self.arquivSelecionado.place(x=10,y=10)
self.labelQtdPaginas = ttk.Label(
text="Quantidade de páginas: ",
master=self.frameOpcoesBusca
)
self.labelQtdPaginas.place(x=10, y=40)
textoResultadoDescoberta = "Resultado descoberta"
self.frameResultadoDescoberta = ttk.Labelframe(self.painelDireito, text=textoResultadoDescoberta, bootstyle="dark")
self.frameResultadoDescoberta.pack(fill=BOTH, expand=YES, anchor=N)
textoResultadoTarjamento = "Resultado tarjamento"
self.frameResultadoTarjamento = ttk.Labelframe(self.painelDireito, text=textoResultadoTarjamento, bootstyle="dark")
self.frameResultadoTarjamento.pack(fill=BOTH, expand=YES, anchor=N)
self.painelEsquerdo.pack_forget()
self.painelDireito.pack_forget()
def showAbrirArquivo(self):
self.caminhoArquivo = filedialog.askopenfilename(title="Selecione o arquivo", filetypes=[("PDF Files", "*.pdf")])
self.doc = fitz.open(self.caminhoArquivo)
self.qtdPaginas = self.doc.page_count
self.arquivSelecionado.config(text="Arquivo selecionado: \n"+self.caminhoArquivo)
self.labelQtdPaginas.config(text="Quantidade de páginas: \n" + str(self.qtdPaginas))
# self.setvar('qtdPaginas', self.doc.page_count)
self.show_image()
self.painelEsquerdo.pack(side=LEFT, expand=True, fill=X)
self.painelDireito.pack(side=RIGHT, fill=BOTH, expand=True)
self.labelQtdPaginas.update_idletasks()
self.labelQtdPaginas.update()
self.doc.save("dddd.pdf")
def showSobre(self):
mensagem = "Paluh - Privacidade Aluh tem como objetivo o desenvolvimento de aplicação para a descoberta e anonimização (tarjamento) de dados pessoais em documentos textuais no formato PDF.\n Contato: [email protected]"
percentagemLargura = int((self.util.larguraTela//2)*0.50)
Messagebox.show_info(mensagem, title='Sobre', alert=True, parent=self, position=((self.util.larguraTela//2)+percentagemLargura,self.util.alturaTela//2))
def pdf_to_img(self,page_num):
self.zoom = 1.0
self.mat = fitz.Matrix(self.zoom, self.zoom)
page = self.doc.load_page(page_num)
#a = page.search_for("Jaime")
#page.add_highlight_annot(a[0])
#anotacao = page.add_rect_annot(a[0])
#anotacao.set_color(fill="black")
#anotacao.update()
#print('=======')
#print(a)
#print(page.get_text("text"))
pix = page.get_pixmap(matrix=self.mat)
return Image.frombytes("RGB", [pix.width, pix.height], pix.samples)
def show_image(self):
try:
#page_num = int(entry.get()) - 1
page_num = 0
assert page_num >= 0 and page_num < self.qtdPaginas
im = self.pdf_to_img(page_num)
img_tk = ImageTk.PhotoImage(im)
frame = ttk.Frame(self.canvas)
#panel = ttk.Label(frame, image=img_tk)
panel = ttk.Label(frame,image=img_tk,relief="solid")
panel.pack(fill=Y,expand=YES)
#panel.pack(side="bottom", fill="both", expand="yes")
frame.image = img_tk
self.canvas.create_window(0, 0, anchor='nw', window=frame)
frame.update_idletasks()
frame.pack(side="left", fill="both", expand="yes")
#frame.grid(column=0, row=0)
self.canvas.config(scrollregion=self.canvas.bbox("all"))
except:
pass
if __name__ == '__main__':
app = ttk.Window()
Main_Paluh(app)
app.mainloop()