Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
549 |
-
|
550 |
-
|
|
|
|
|
|
|
|
|
|
|
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) {
|