当前位置 : 主页 > 编程语言 > python >

python实现图片转换pdf

来源:互联网 收集:自由互联 发布时间:2022-06-24
安装第三方库 linux平台 sudo apt install python3-reportlab python3-pil 示例代码 import sys from reportlab . pdfgen import canvas from PIL import Image def imgtopdf ( input_paths , outputpath ): maxw , maxh = Image . open ( input_

安装第三方库

linux平台

sudo apt install python3-reportlab python3-pil

示例代码

import sys
from reportlab.pdfgen import canvas
from PIL import Image


def imgtopdf(input_paths, outputpath):
maxw, maxh = Image.open(input_paths).size
pdf_w,pdf_h = (480.28,702.78)
c = canvas.Canvas(outputpath, pagesize=(pdf_w,pdf_h))
if maxw/pdf_w > maxh/pdf_h:
c.drawImage(input_paths,0, (pdf_h-maxh*pdf_w/maxw)/2,pdf_w,maxh*pdf_w/maxw)
else:
c.drawImage(input_paths,(pdf_w-maxw*pdf_h/maxh)/2,0,maxw*pdf_h/maxh,pdf_h)
c.showPage()
c.save()

if __name__ == "__main__":
imgtopdf("test.png", "test.pdf")

1.实现了图片等比例缩小或放大到与pdf页面大小一致
2.pdf页面大小可以自定义 分别为​​pdf_w​​​,​​pdf_h​​


作者:Hello_wshuo​


网友评论