在python中将png图像转换为一个pdf

Posted

技术标签:

【中文标题】在python中将png图像转换为一个pdf【英文标题】:png images to one pdf in python 【发布时间】:2017-04-15 20:16:09 【问题描述】:

我有一个 .png 图像列表。我需要将它们全部转换为一个pdf,每页9张图片,但不要将它们垂直放置,而是填写所有宽度,然后才能继续下一行。 每次图片数量可以不同(12,... 15)

我试过fpdf

from fpdf import FPDF

list_of_images = [1.png, 2.png, ... 15.png]
w = 70
h = 60
pdf = FPDF(orientation = 'L')
for image in list_of_images:
    pdf.image(image, w=sizew, h=sizeh)
pdf.output("Memory_usage.pdf", "F")

还有 wkhtmltopdf

template = Template('''<!doctype html>
<html>
<body>
        <div style="display: flex; flex-direction: row">
        % for image in images %
            <img src=" image " />
        % endfor %
        </div>
</body>
</html>''')
list_of_images = [1.png, 2.png, ... 15.png]
html = template.render(images=list_of_pict)
with open("my_new_file.html", "wb") as fh:
    fh.write(html)

p = subprocess.Popen(['wkhtmltopdf', '-', 'Memory_usage.pdf'], stdin=subprocess.PIPE, universal_newlines=True)
p.communicate(html)
p.wait()

但他们都将每张图片放在另一张下面

【问题讨论】:

【参考方案1】:

只需使用 FPDF 将每个图像放置在所需的坐标处:

pdf.image(image, x=50, y=100, w=sizew, h=sizeh)

有关 FPDF 文档的更多信息:image

【讨论】:

以上是关于在python中将png图像转换为一个pdf的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Android 中将 PDF 页面转换为图像?

在Python中将turtle绘制的图像转换为PNG

如何在 C# 中将 PDF 转换为图像? [复制]

UWP C# 将 png 转换为 pdf

在 Python 3.9.6 中将 b 字符串转换为 png

怎样把pdf格式转成png格式