Omnibus commited on
Commit
e51947e
·
verified ·
1 Parent(s): dd9485e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -545,9 +545,14 @@ def create_image(url):
545
  print(url)
546
  with open("tmp.svg","w") as svg:
547
  svg.write(url)
548
- output = cairosvg.svg2png(
549
- bytestring=open('tmp.svg').read().encode('utf-8'), write_to="output.png")
550
- return "tmp.svg"
 
 
 
 
 
551
 
552
  score_js="""
553
  function(text_input) {
 
545
  print(url)
546
  with open("tmp.svg","w") as svg:
547
  svg.write(url)
548
+ with open("tmp.svg", "rb") as f:
549
+ encoded_image = base64.b64encode(f.read())
550
+
551
+ with open("image.png","wb") as file:
552
+ file.write(eval(encoded_image))
553
+ #output = cairosvg.svg2png(
554
+ # bytestring=open('tmp.svg').read().encode('utf-8'), write_to="output.png")
555
+ return "image.png"
556
 
557
  score_js="""
558
  function(text_input) {