File size: 11,653 Bytes
d72fd49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
import base64
import io
import json
import os
import re
import tempfile
import zipfile
from datetime import datetime
from pathlib import Path

import gradio as gr
import requests
from PIL import Image
import pdf2image

API_URL = "https://t707h6d9q6oftbx3.aistudio-app.com/layout-parsing"
TOKEN = os.getenv("API_TOKEN", "c9e4aaf9634724e215690ba66a66dbdbdf3222a2")


CSS = """
:root {
    --sand-color: #D7B4F8;    
    --white: #ffffff;          
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    --text-color: #F5ECFD;     
    --black:#000000;
    --link-hover: #F5ECFD;
    --content-width: 1200px;
    --button-color: #cbbdff; /* 新增按钮颜色变量 */
}

body {
    display: flex;
    justify-content: center;
    background-color: var(--sand-color);
    color: var(--black);
    font-family: Arial, sans-serif;
}

.gradio-container {
    max-width: var(--content-width) !important;
    width: 100% !important;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--white) !important;
}

/* 修改1: 优化header容器样式 */
.header-container {
    width: 100%;
    background-color: var(--text-color) !important;
    padding: 20px 0 10px 0; /* 减少底部padding */
    margin-bottom: 20px;
    border-radius: 8px;
}

.logo-container {
    width: 100%;
    margin-bottom: 15px; /* 减少logo与按钮间距 */
    text-align: center;
}

.logo-img {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    display: block;
}

/* 修改2: 优化导航按钮布局 */
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* 减少按钮间距 */
    margin-top: 10px; /* 减少顶部间距 */
    width: 80%; /* 控制按钮区域宽度 */
    margin-left: auto;
    margin-right: auto;
}

.nav-button {
    background-color: var(--button-color) !important; /* 修改为FAF9F6 */
    color: var(--black) !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    padding: 6px 20px !important;
    border-radius: 24px !important;
    border: none !important;
    transition: opacity 0.2s;
    flex: 1;
    max-width: 200px;
    text-align: center;
}

.nav-button:hover {
    opacity: 0.8 !important;
}

.upload-section {
    width: 100%;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: var(--text-color) !important;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
/* 强制底部链接为白色背景 */
#component-16, /* Use via API 部分 */
#component-17, /* Settings 部分 */
#component-18 { /* Built with Gradio 部分 */
    background-color: var(--white) !important;
}

footer .gr-panel,
.gr-footer,
.gr-panel:has(a[href*="api"]),  /* 针对Use via API */
.gr-panel:has(a[href*="settings"]) /* 针对Settings */ {
    background-color: var(--white) !important;
    color: var(--black) !important;
}


/* 其他样式保持不变 */
.result-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}

.pdf-preview {
    flex: 1;
    min-width: 0;
}

.markdown-result {
    flex: 1;
    min-width: 0;
}

.gallery-container {
    width: 100% !important;
}

.gallery-item {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
}

button {
    background-color: var(--text-color) !important;
    color: var(--black) !important;
    border: none !important;
    border-radius: 4px;
    padding: 8px 16px;
}
button:hover {
    opacity: 0.8 !important;
}

.radio-group {
    margin-bottom: 15px !important;
}

.file-download {
    margin-top: 15px !important;
}
.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-container {
    text-align: center;
    margin: 20px 0;
}
"""

def clean_markdown_text(text):
    if not text:
        return ""
    text = re.sub(r'<[^>]+>', '', text)
    text = re.sub(r'\n{3,}', '\n\n', text)
    return text.strip()


def pdf_to_images(pdf_path):
    try:
        images = pdf2image.convert_from_path(pdf_path)
        return [image for image in images]
    except:
        return None


def process_file(file_path, file_type):
    try:
        with open(file_path, "rb") as f:
            file_bytes = f.read()

        file_data = base64.b64encode(file_bytes).decode("ascii")
        headers = {
            "Authorization": f"token {TOKEN}",
            "Content-Type": "application/json"
        }

        response = requests.post(
            API_URL,
            json={"file": file_data, "fileType": 0 if file_type == "pdf" else 1},
            headers=headers,
            timeout=60
        )
        response.raise_for_status()

        result = response.json()
        layout_results = result.get("result", {}).get("layoutParsingResults", [])

        markdown_contents = []
        clean_markdown_contents = []
        for res in layout_results:
            markdown = res.get("markdown", {})
            if isinstance(markdown, str):
                original = markdown
            elif isinstance(markdown, dict):
                original = markdown.get("text", "")

            markdown_contents.append(original)
            clean_markdown_contents.append(clean_markdown_text(original))

        if file_type == "pdf":
            images = pdf_to_images(file_path)
        else:
            images = [Image.open(file_path)]

        return {
            "original_file": file_path,
            "markdown_contents": markdown_contents,
            "clean_markdown_contents": clean_markdown_contents,
            "pdf_images": images,
            "api_response": result
        }

    except Exception as e:
        raise gr.Error(f"Error processing file: {str(e)}")


def create_zip_file(results):
    try:
        timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
        zip_filename = f"analysis_results_{timestamp}.zip"

        temp_dir = tempfile.mkdtemp()
        zip_path = os.path.join(temp_dir, zip_filename)

        with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf:
            original_path = results.get("original_file", "")
            if original_path and Path(original_path).exists():
                zipf.write(original_path, f"original/{Path(original_path).name}")

            markdowns = results.get("markdown_contents", [])
            for i, md_content in enumerate(markdowns):
                if md_content:
                    zipf.writestr(f"markdown/original/markdown_{i + 1}.md", md_content)

            api_response = results.get("api_response", {})
            zipf.writestr("api_response.json", json.dumps(api_response, indent=2, ensure_ascii=False))

        return zip_path

    except Exception as e:
        raise gr.Error(f"Error creating ZIP file: {str(e)}")


def export_markdown(results):
    try:
        markdowns = results.get("markdown_contents", [])
        if not markdowns:
            raise gr.Error("No markdown content to export")

        timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
        filename = f"original_markdown_{timestamp}.md"
        content = "\n\n".join(markdowns)

        temp_dir = tempfile.mkdtemp()
        file_path = os.path.join(temp_dir, filename)

        with open(file_path, 'w', encoding='utf-8') as f:
            f.write(content)

        return file_path

    except Exception as e:
        raise gr.Error(f"Error exporting markdown: {str(e)}")


with gr.Blocks(css=CSS, title="Document Analysis System") as demo:
    results_state = gr.State()

    # 修改1: 将logo和导航按钮整合到一个容器中
    with gr.Column(elem_classes=["header-container"]):
        with gr.Column(elem_classes=["logo-container"]):
            gr.Image("pp-structurev3_altered.png", elem_classes=["logo-img"], show_label=False)

        # 修改2: 使用按钮代替链接
        with gr.Row(elem_classes=["nav-buttons"]):
            gr.Button("GitHub", link="https://github.com/PaddlePaddle/PaddleOCR", elem_classes=["nav-button"])
            gr.Button("Homepage", link="https://paddleocr.ai", elem_classes=["nav-button"])

    with gr.Column(elem_classes=["upload-section"]):
        file_type = gr.Radio(
            ["pdf", "image"],
            label="File type",
            value="pdf",
            interactive=True
        )
        file_input = gr.File(
            label="Upload document",
            file_types=[".pdf", ".jpg", ".jpeg", ".png"],
            type="filepath"
        )
        process_btn = gr.Button("Analyze document", variant="primary")

        loading_spinner = gr.Column(
            visible=False,
            elem_classes=["loader-container"]
        )
        with loading_spinner:
            gr.HTML("""
            <div class="loader"></div>
            <p>Wait...</p>
            """)

    with gr.Row(elem_classes=["result-container"]):
        with gr.Column(elem_classes=["pdf-preview"]):
            gr.Markdown("### Original document preview")
            pdf_display = gr.Gallery(
                label="PDF page",
                show_label=False,
                elem_classes=["gallery-container"]
            )

        with gr.Column(elem_classes=["markdown-result"]):
            with gr.Row(elem_classes=["radio-group"]):
                display_mode = gr.Radio(
                    ["Original Markdown", "Cleaned Text"],
                    label="Display Mode",
                    value="Original Markdown",
                    interactive=True
                )
            markdown_display = gr.HTML(label="Analysis Results")
    with gr.Column(elem_classes=["download-section"]):
        gr.Markdown("### Result Export")
        with gr.Row():
            download_md_btn = gr.Button("Download Original Markdown", variant="secondary")
            download_all_btn = gr.Button("Download Complete Analysis Results (ZIP)", variant="primary")
        download_file = gr.File(visible=False, label="Download file", elem_classes=["file-download"])

    def toggle_spinner():
        return gr.update(visible=True)


    def hide_spinner():
        return gr.update(visible=False)


    process_btn.click(
        toggle_spinner,
        outputs=[loading_spinner]
    ).then(
        process_file,
        inputs=[file_input, file_type],
        outputs=[results_state]
    ).then(
        hide_spinner,
        outputs=[loading_spinner]
    ).success(
        lambda res: res["pdf_images"] if res and res.get("pdf_images") else [],
        inputs=[results_state],
        outputs=[pdf_display]
    ).success(
        lambda res: res["markdown_contents"][0] if res and res.get("markdown_contents") else "",
        inputs=[results_state],
        outputs=[markdown_display]
    )

    display_mode.change(
        lambda mode, res: (
            res["markdown_contents"][0] if mode == "原始Markdown"
            else res["clean_markdown_contents"][0]
        ) if res else "",
        inputs=[display_mode, results_state],
        outputs=[markdown_display]
    )

    download_md_btn.click(
        export_markdown,
        inputs=[results_state],
        outputs=[download_file]
    ).then(
        lambda x: gr.update(visible=True),
        inputs=[download_file],
        outputs=[download_file]
    )

    download_all_btn.click(
        create_zip_file,
        inputs=[results_state],
        outputs=[download_file]
    ).then(
        lambda x: gr.update(visible=True),
        inputs=[download_file],
        outputs=[download_file]
    )

if __name__ == "__main__":
    demo.launch(share=True)