seawolf2357 commited on
Commit
5d72210
ยท
verified ยท
1 Parent(s): 2d2ee7d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -21
app.py CHANGED
@@ -1,27 +1,25 @@
1
- import urllib.parse
2
  import gradio as gr
 
 
3
 
4
- def render_latex_to_image(latex_str):
5
- """
6
- ์‚ฌ์šฉ์ž์˜ LaTeX ๋ฌธ์ž์—ด ์ž…๋ ฅ์„ ๋ฐ›์•„์„œ Codecogs LaTeX Rendering API๋ฅผ ์ด์šฉํ•ด ์ด๋ฏธ์ง€(png ํ˜•์‹)๋กœ ๋ณ€ํ™˜ํ•˜๊ณ ,
7
- ์ƒ์„ฑ๋œ ์ด๋ฏธ์ง€ URL์„ ๋ฐ˜ํ™˜ํ•˜๋Š” ํ•จ์ˆ˜
8
- """
9
- base_url = "https://latex.codecogs.com/png.latex?"
10
- # LaTeX ๋ฌธ์ž์—ด์„ URL ์ธ์ฝ”๋”ฉ
11
- encoded_str = urllib.parse.quote(latex_str)
12
- # ์ตœ์ข… ์ด๋ฏธ์ง€ URL ์ƒ์„ฑ
13
- image_url = f"{base_url}{encoded_str}"
14
 
15
- return image_url
 
 
 
 
 
 
 
 
16
 
17
- # Gradio ์ธํ„ฐํŽ˜์ด์Šค ์ •์˜
18
- iface = gr.Interface(
19
- fn=render_latex_to_image,
20
- inputs=gr.Textbox(placeholder="Enter LaTeX code here...", lines=4),
21
- outputs=gr.Image(),
22
- title="LaTeX to Image Renderer with CodeCogs API",
23
- description="Enter LaTeX code to render it into an image using the CodeCogs LaTeX Rendering API."
24
- )
25
 
26
- # Gradio ์ธํ„ฐํŽ˜์ด์Šค ์‹คํ–‰
27
  iface.launch()
 
 
1
  import gradio as gr
2
+ import requests
3
+ import urllib.parse
4
 
5
+ def latex_to_image_via_api(latex_code):
6
+ encoded_latex = urllib.parse.quote(latex_code) # LaTeX ์ฝ”๋“œ๋ฅผ URL ์ธ์ฝ”๋”ฉ
7
+ api_url = f"https://latex.codecogs.com/png.download?{encoded_latex}" # URL ์ƒ์„ฑ
 
 
 
 
 
 
 
8
 
9
+ response = requests.get(api_url) # API ์š”์ฒญ
10
+
11
+ if response.status_code == 200:
12
+ # ์‘๋‹ต์œผ๋กœ๋ถ€ํ„ฐ ๋ฐ”์ด๋„ˆ๋ฆฌ ๋ฐ์ดํ„ฐ๋ฅผ ๋ฐ›์•„ ์ž„์‹œ ํŒŒ์ผ์— ์ €์žฅ
13
+ with open("latex_image.png", "wb") as f:
14
+ f.write(response.content) # ์ด๋ฏธ์ง€ ๋‚ด์šฉ์„ ํŒŒ์ผ์— ์“ด๋‹ค
15
+ return "latex_image.png" # ์ด๋ฏธ์ง€ ํŒŒ์ผ ๊ฒฝ๋กœ ๋ฐ˜ํ™˜
16
+ else:
17
+ return "LaTeX ๋ณ€ํ™˜ ์‹คํŒจ: API ํ˜ธ์ถœ์— ์‹คํŒจํ–ˆ์Šต๋‹ˆ๋‹ค."
18
 
19
+ iface = gr.Interface(fn=latex_to_image_via_api,
20
+ inputs=gr.Textarea(placeholder="LaTeX ์ฝ”๋“œ๋ฅผ ์ž…๋ ฅํ•˜์„ธ์š”..."),
21
+ outputs=gr.Image(label="๋ณ€ํ™˜๋œ ์ด๋ฏธ์ง€"),
22
+ title="LaTeX ์ฝ”๋“œ๋ฅผ ์ด๋ฏธ์ง€๋กœ ๋ณ€ํ™˜",
23
+ description="Codecogs LaTeX Rendering API๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ LaTeX ์ฝ”๋“œ๋ฅผ ์ด๋ฏธ์ง€๋กœ ๋ณ€ํ™˜ํ•ฉ๋‹ˆ๋‹ค.")
 
 
 
24
 
 
25
  iface.launch()