seawolf2357 commited on
Commit
6e98020
ยท
verified ยท
1 Parent(s): ca60e9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -18
app.py CHANGED
@@ -1,22 +1,25 @@
1
  import gradio as gr
2
- import matplotlib.pyplot as plt
3
- import tempfile
4
- import os
5
 
6
- def latex_to_image(latex_str):
7
- # LaTeX ๋ฌธ์ž์—ด์„ ์ด๋ฏธ์ง€๋กœ ๋ณ€ํ™˜
8
- fig, ax = plt.subplots()
9
- ax.text(0.5, 0.5, f'${latex_str}$', fontsize=15, ha='center', va='center')
10
- ax.axis('off')
11
- with tempfile.NamedTemporaryFile(delete=False, suffix='.png') as tmpfile:
12
- plt.savefig(tmpfile.name, bbox_inches='tight', pad_inches=0.1)
13
- plt.close(fig)
14
- return tmpfile.name
 
 
 
 
 
 
15
 
16
  iface = gr.Interface(fn=latex_to_image,
17
- inputs="text",
18
- outputs="image",
19
- title="LaTeX to Image Renderer",
20
- description="Enter a LaTeX string to render it as an image.")
21
-
22
- iface.launch(share=True)
 
1
  import gradio as gr
2
+ import requests
 
 
3
 
4
+ def latex_to_image(latex_code):
5
+ # Codecogs ์„œ๋น„์Šค๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๊ฒฝ์šฐ
6
+ codecogs_url = "https://latex.codecogs.com/png.latex?"
7
+ # QuickLaTeX ์„œ๋น„์Šค๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๊ฒฝ์šฐ (์˜ต์…˜)
8
+ quicklatex_url = "https://quicklatex.com/latex3.f"
9
+
10
+ # Codecogs ์„œ๋น„์Šค๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๊ฒฝ์šฐ์˜ ๊ตฌํ˜„
11
+ response_url = codecogs_url + requests.utils.quote(latex_code)
12
+
13
+ # QuickLaTeX ์„œ๋น„์Šค๋ฅผ ์‚ฌ์šฉํ•  ๊ฒฝ์šฐ์˜ ๊ตฌํ˜„ (์˜ต์…˜, POST ์š”์ฒญ ํ•„์š”)
14
+ # response = requests.post(quicklatex_url, data={'formula': latex_code, 'fsize': '17px', 'fcolor': '000000'})
15
+ # if response.status_code == 200:
16
+ # response_url = response.text
17
+
18
+ return response_url
19
 
20
  iface = gr.Interface(fn=latex_to_image,
21
+ inputs=gr.Textbox(label="Enter your LaTeX code here"),
22
+ outputs=gr.Image(label="Rendered LaTeX"),
23
+ title="LaTeX to Image Converter",
24
+ description="This tool converts LaTeX code to an image using an external rendering service.")
25
+ iface.launch()