栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

使用Python将HTML转换为PDF

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

使用Python将HTML转换为PDF

为Django配置Pisa应该并不难。

网上确实有几个示例向您展示了如何执行此操作,并说明了如何链接到模板中的外部资源:

  • http://www.arnebrodowski.de/blog/501-Pisa-and-Reportlab-pitfalls.html
  • django-比萨:将图像添加到PDF输出
  • http://antydba.blogspot.com/2009/12/django-pisa-polskie-czcionki.html
  • http://www.20seven.org/journal/2008/11/pdf-generation-with-pisa-in-django.html

在您的情况下,您应该尝试第一篇博文中提到的链接回调函数:

def fetch_resources(uri, rel):    """    Callback to allow pisa/reportlab to retrieve Images,Stylesheets, etc.    `uri` is the href attribute from the html link element.    `rel` gives a relative path, but it's not used here.    """    path = os.path.join(settings.MEDIA_ROOT, uri.replace(settings.MEDIA_URL, ""))    return path

对于较新的Django版本,您可能应该使用

STATIC_ROOT
而不是
MEDIA_ROOT

然后

fetch resources
在渲染方法中相应地使用:

pdf = pisa.pisadocument(StringIO.StringIO(        html.enpre("UTF-8")),         result,         link_callback=fetch_resources,        encoding="utf-8")


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/634082.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号