seawolf2357 commited on
Commit
af0b112
·
verified ·
1 Parent(s): 9cb8f75

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +55 -32
app.py CHANGED
@@ -6,63 +6,86 @@ from PIL import Image
6
  import io
7
  import os
8
 
 
9
  css = """
10
  footer {
11
  visibility: hidden;
12
  }
13
- """
14
 
15
- app_id = os.getenv("app_id")
16
- app_key = os.getenv("app_key")
17
- app_url = os.getenv("app_url")
 
 
18
 
 
 
 
 
 
 
 
 
 
 
19
 
20
- def get_latex_from_image_all_formats(image):
21
- buffered = io.BytesIO()
22
- image.save(buffered, format="JPEG")
23
- image_base64 = base64.b64encode(buffered.getvalue()).decode('utf-8')
24
 
25
- headers = {
26
- "app_id": app_id,
27
- "app_key": app_key,
28
- "Content-Type": "application/json"
29
- }
30
 
31
- # 해당 부분을 ["text"]로 변경하여 formats를 리스트로 설정
32
- data = {
33
- "src": f"data:image/jpeg;base64,{image_base64}",
34
- "formats": ["text"]
35
- }
 
 
36
 
37
- response = requests.post(app_url, headers=headers, json=data)
38
- response.raise_for_status()
 
39
 
40
- result = response.json()
41
- # formats_results 변수는 사용하지 않으므로 제거하여 코드를 단순화
42
- return result
43
-
44
 
45
  def build_gradio_app(css=css):
46
  with gr.Blocks(css=css) as demo:
47
- gr.Markdown("# ArXivGPT OCR LaTeX")
48
- gr.Markdown("변환하기 버튼 누르고 출력된 결과값을 '복사'하여 화면 아래 박스('텍스트 지우고 상태로')에 붙여넣고 'Render HTML'버튼을 누르세요.")
49
 
50
- image_input = gr.Image(type="pil", label="이미지 업로드")
51
 
52
  def process_and_output(image):
53
- # 이미지 처리 및 결과 반환 로직
54
  latex_result = get_latex_from_image_all_formats(image)
55
  text_result = latex_result.get("text", "No result")
56
  return text_result
57
 
58
- submit_button = gr.Button("변환하기")
59
- outputs = gr.Textbox(label="결과")
60
 
61
  submit_button.click(fn=process_and_output, inputs=[image_input], outputs=[outputs])
62
 
63
- examples = gr.Examples(examples=[["ko.png"], ["en.png"], ["hand.jpg"]], inputs=[image_input], fn=process_and_output, outputs=[outputs])
 
 
 
 
 
 
64
 
65
- latex_iframe = gr.HTML(value='<iframe src="https://mathjax.github.io/MathJax-demos-web/input-tex_mml2chtml.html" style="width: 100%; height: 700px; border: 2px solid #007bff; border-radius: 8px;"></iframe>', elem_id="latex_iframe")
 
 
 
66
 
67
  return demo
68
 
 
6
  import io
7
  import os
8
 
9
+ # Enhanced 3D style CSS
10
  css = """
11
  footer {
12
  visibility: hidden;
13
  }
 
14
 
15
+ .gradio-container {
16
+ background: linear-gradient(145deg, #f0f0f0, #ffffff);
17
+ box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
18
+ border-radius: 15px;
19
+ }
20
 
21
+ .gr-button {
22
+ background: linear-gradient(145deg, #007bff, #0056b3);
23
+ border: none;
24
+ padding: 12px 24px;
25
+ border-radius: 10px;
26
+ color: white;
27
+ font-weight: bold;
28
+ box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
29
+ transition: transform 0.2s;
30
+ }
31
 
32
+ .gr-button:hover {
33
+ transform: translateY(-2px);
34
+ box-shadow: 7px 7px 20px rgba(0,0,0,0.25);
35
+ }
36
 
37
+ .gr-input, .gr-box {
38
+ border-radius: 10px;
39
+ box-shadow: inset 5px 5px 10px #d1d1d1, inset -5px -5px 10px #ffffff;
40
+ border: 2px solid #e0e0e0;
41
+ }
42
 
43
+ .gr-form {
44
+ background: #ffffff;
45
+ padding: 20px;
46
+ border-radius: 15px;
47
+ box-shadow: 0 10px 30px rgba(0,0,0,0.1);
48
+ }
49
+ """
50
 
51
+ app_id = os.getenv("app_id")
52
+ app_key = os.getenv("app_key")
53
+ app_url = os.getenv("app_url")
54
 
55
+ # Rest of your functions remain the same
56
+ def get_latex_from_image_all_formats(image):
57
+ # Your existing function code...
58
+ pass
59
 
60
  def build_gradio_app(css=css):
61
  with gr.Blocks(css=css) as demo:
62
+ gr.Markdown("# ArXivGPT OCR LaTeX Converter")
63
+ gr.Markdown("Upload an image, click 'Convert' button, and copy the output. Paste it in the empty box below and click 'Render HTML'.")
64
 
65
+ image_input = gr.Image(type="pil", label="Upload Image")
66
 
67
  def process_and_output(image):
 
68
  latex_result = get_latex_from_image_all_formats(image)
69
  text_result = latex_result.get("text", "No result")
70
  return text_result
71
 
72
+ submit_button = gr.Button("Convert", elem_classes="custom-button")
73
+ outputs = gr.Textbox(label="Output")
74
 
75
  submit_button.click(fn=process_and_output, inputs=[image_input], outputs=[outputs])
76
 
77
+ examples = gr.Examples(
78
+ examples=[["ko.png"], ["en.png"], ["hand.jpg"]],
79
+ inputs=[image_input],
80
+ fn=process_and_output,
81
+ outputs=[outputs],
82
+ label="Example Images"
83
+ )
84
 
85
+ latex_iframe = gr.HTML(
86
+ value='<iframe src="https://mathjax.github.io/MathJax-demos-web/input-tex_mml2chtml.html" style="width: 100%; height: 700px; border: 2px solid #007bff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);"></iframe>',
87
+ elem_id="latex_iframe"
88
+ )
89
 
90
  return demo
91