forked from Mega-Gorilla/Index_PDF_Translation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanual_translate_pdf.py
184 lines (147 loc) · 6.6 KB
/
manual_translate_pdf.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
from modules.translate import pdf_translate,PDF_block_check,write_logo_data
import os, asyncio,time
import tkinter as tk
from tkinter import filedialog
from config import *
def load_json_to_list(file_path):
import json
""" 指定されたJSONファイルを読み込み、Pythonのリストとして返す関数 """
try:
with open(file_path, 'r', encoding='utf-8') as file:
data = json.load(file)
return data
except FileNotFoundError:
print(f"指定されたファイルが見つかりません: {file_path}")
return None
except json.JSONDecodeError:
print("JSONファイルの形式が正しくありません。")
return None
except Exception as e:
print(f"ファイルの読み込み中にエラーが発生しました: {e}")
return None
async def translate_local(deepl_url,deepl_key,disble_translate=False):
# GUIでファイル選択のための設定
root = tk.Tk()
root.withdraw() # GUIのメインウィンドウを表示しない
file_path = filedialog.askopenfilename(filetypes=[("PDF files", "*.pdf")]) # PDFファイルのみ選択
if not file_path:
print("ファイルが選択されませんでした。")
return
with open(file_path, "rb") as f:
input_pdf_data = f.read()
result_pdf = await pdf_translate(deepl_key, input_pdf_data,api_url=deepl_url,debug=False,disable_translate=disble_translate)
if result_pdf is None:
return
_, file_name = os.path.split(file_path)
output_path = Output_folder_path + "result_"+file_name
with open(output_path, "wb") as f:
f.write(result_pdf)
async def translate_test(disble_translate=False):
# GUIでファイル選択のための設定
root = tk.Tk()
root.withdraw() # GUIのメインウィンドウを表示しない
file_path = filedialog.askopenfilename(filetypes=[("PDF files", "*.pdf")]) # PDFファイルのみ選択
if not file_path:
print("ファイルが選択されませんでした。")
return
process_time = time.time()
with open(file_path, "rb") as f:
input_pdf_data = f.read()
result_pdf = await pdf_translate(os.environ["DEEPL_API_KEY"], input_pdf_data,debug=True,disable_translate=disble_translate)
if result_pdf is None:
return
_, file_name = os.path.split(file_path)
output_path = Debug_folder_path + "result_"+file_name
with open(output_path, "wb") as f:
f.write(result_pdf)
print(F"Time:{time.time()-process_time}")
async def test_bench(disble_translate=False,debug=True):
original_directory = os.getcwd()
directory = ".\Test Bench\\raw"
import glob
# カレントディレクトリに変更する場合
os.chdir(directory)
# PDFファイルのフルパスを取得
pdf_files = glob.glob('**/*.pdf', recursive=True)
# ディレクトリをフルパスで取得するには、以下のように結合する
pdf_files = [os.path.join(directory, file) for file in pdf_files]
pdf_files = glob.glob('**/*.pdf', recursive=True)
# ディレクトリー移動
os.chdir(original_directory)
for file_path in pdf_files:
file_path = directory + "\\"+ file_path
with open(file_path, "rb") as f:
input_pdf_data = f.read()
print(F"\nLoaded: {file_path}")
result_pdf = await pdf_translate(os.environ["DEEPL_API_KEY"], input_pdf_data,debug=debug,disable_translate=disble_translate)
if result_pdf is None:
continue
_, file_name = os.path.split(file_path)
output_path = bach_process_path + "result_"+file_name
with open(output_path, "wb") as f:
f.write(result_pdf)
print(F"Saved: {output_path}")
async def pdf_block_test():
# GUIでファイル選択のための設定
root = tk.Tk()
root.withdraw() # GUIのメインウィンドウを表示しない
file_path = filedialog.askopenfilename(filetypes=[("PDF files", "*.pdf")]) # PDFファイルのみ選択
if not file_path:
print("ファイルが選択されませんでした。")
return
with open(file_path, "rb") as f:
input_pdf_data = f.read()
result_pdf = await PDF_block_check(input_pdf_data)
if result_pdf is None:
return
_, file_name = os.path.split(file_path)
output_path = Debug_folder_path + "Blocks_"+file_name
with open(output_path, "wb") as f:
f.write(result_pdf)
async def pdf_block_bach():
original_directory = os.getcwd()
directory = ".\Test Bench\\raw"
import glob
# カレントディレクトリに変更する場合
os.chdir(directory)
# PDFファイルのフルパスを取得
pdf_files = glob.glob('**/*.pdf', recursive=True)
# ディレクトリをフルパスで取得するには、以下のように結合する
pdf_files = [os.path.join(directory, file) for file in pdf_files]
pdf_files = glob.glob('**/*.pdf', recursive=True)
# ディレクトリー移動
os.chdir(original_directory)
for file_path in pdf_files:
file_path = directory + "\\"+ file_path
with open(file_path, "rb") as f:
input_pdf_data = f.read()
print(F"Loaded: {file_path}")
result_pdf = await PDF_block_check(input_pdf_data)
result_pdf = await write_logo_data(result_pdf)
if result_pdf is None:
continue
_, file_name = os.path.split(file_path)
output_path = bach_process_path + "Blocks_"+file_name
with open(output_path, "wb") as f:
f.write(result_pdf)
print(F"Saved: {output_path}")
async def marge_test():
base_path = "./Test Bench/raw/3page-Interactive Video Stylization Using Few-Shot Patch-Based Training.pdf"
tran_path = "./Test Bench/result/result_3page-Interactive Video Stylization Using Few-Shot Patch-Based Training.pdf"
with open(base_path, "rb") as f:
input_pdf_data_base = f.read()
with open(tran_path, "rb") as f:
input_pdf_data_tran = f.read()
from modules.pdf_edit import create_viewing_pdf
#
result_pdf = await create_viewing_pdf(input_pdf_data_base,input_pdf_data_tran)
with open("./marge_test.pdf", "wb") as f:
f.write(result_pdf)
if __name__ == "__main__":
asyncio.run(translate_local(DeepL_URL,DeepL_API_Key))
#asyncio.run(translate_test(disble_translate=True))
#asyncio.run(translate_test(disble_translate=False))
#asyncio.run(test_bench(disble_translate=True,debug=True))
#asyncio.run(test_bench(disble_translate=False,debug=False))
#asyncio.run(pdf_block_bach())
#asyncio.run(marge_test())