gstaff commited on
Commit
e7413c3
·
1 Parent(s): f723b2e

Enable local file access for imgkit.

Browse files

See https://stackoverflow.com/questions/62315246/wkhtmltopdf-0-12-6-warning-blocked-access-to-file

Files changed (1) hide show
  1. app.py +1 -1
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)