python使图片转化为pdf

时间:2020-07-25 23:28:34   收藏:0   阅读:72
# python安装reportlab
pip install reportlab -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
参考https://blog.csdn.net/zhezhebie/article/details/88846824
# -*- coding: utf-8 -*-

from reportlab.lib.pagesizes import portrait
from reportlab.pdfgen import canvas
from PIL import Image


def jpg_to_pdf(jpg, pdf_path):
    (w, h) = Image.open(jpg).size
    user = canvas.Canvas(pdf_path, pagesize=portrait((w, h)))
    user.drawImage(jpg, 0, 0, w, h)
    user.showPage()
    user.save()


if __name__ == __main__:
    jpg_path = code.png
    pdf_path = code.pdf
    jpg_to_pdf(jpg_path, pdf_path)
# 参考https://www.cnblogs.com/zhouzetian/p/13178749.html

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!