其他分享
首页 > 其他分享> > 使用pdfkit无法导出html中本地图片的问题解决

使用pdfkit无法导出html中本地图片的问题解决

作者:互联网

pdfkit- Warning: Blocked access to file 解决

# 使用pdfkit时可以配置上下面options中的信息
# <img src='xxx.jpg> 标签中的本地图片即可被正确导出
options = {
  "enable-local-file-access": None
}

pdfkit.from_file(html_file_name, pdf_file_name, options=options)

标签:pdfkit,name,导出,access,html,file,options
来源: https://blog.csdn.net/qq_42940160/article/details/120176142