Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,27 +1,25 @@
|
|
1 |
-
import urllib.parse
|
2 |
import gradio as gr
|
|
|
|
|
3 |
|
4 |
-
def
|
5 |
-
|
6 |
-
|
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
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()
|