Spaces:
Runtime error
Runtime error
Enable local file access for imgkit.
Browse filesSee https://stackoverflow.com/questions/62315246/wkhtmltopdf-0-12-6-warning-blocked-access-to-file
app.py
CHANGED
@@ -252,7 +252,7 @@ def html_to_png(card_name, html):
|
|
252 |
try:
|
253 |
css = ['./css/mana.css', './css/keyrune.css',
|
254 |
'./css/mtg_custom.css']
|
255 |
-
imgkit.from_string(html, path, {"xvfb": ""}, css=css)
|
256 |
except Exception as e:
|
257 |
print("ImgKit Error:")
|
258 |
print(e)
|
|
|
252 |
try:
|
253 |
css = ['./css/mana.css', './css/keyrune.css',
|
254 |
'./css/mtg_custom.css']
|
255 |
+
imgkit.from_string(html, path, {"xvfb": "", "enable-local-file-access": ""}, css=css)
|
256 |
except Exception as e:
|
257 |
print("ImgKit Error:")
|
258 |
print(e)
|