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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -10
app.py CHANGED
@@ -2,20 +2,17 @@ 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"),
 
2
  import requests
3
 
4
  def latex_to_image(latex_code):
5
+ # ๊ธฐ๋ณธ์ ์ธ LaTeX ๋ฌธ๋ฒ• ๊ฒ€์‚ฌ ์˜ˆ์‹œ
6
+ if not latex_code.startswith("\\"):
7
+ return "invalid equation: LaTeX commands should start with a backslash (\\)."
8
+
9
+ # ์‹ค์ œ ๋ Œ๋”๋ง URL ์ƒ์„ฑ ๋กœ์ง
10
  codecogs_url = "https://latex.codecogs.com/png.latex?"
 
 
 
 
11
  response_url = codecogs_url + requests.utils.quote(latex_code)
12
 
 
 
 
 
 
13
  return response_url
14
+
15
+
16
 
17
  iface = gr.Interface(fn=latex_to_image,
18
  inputs=gr.Textbox(label="Enter your LaTeX code here"),