“Python конвертирует изображения в PDF” Ответ

пиль в pdf

from PIL import Image

image1 = Image.open(r'path where the image is stored\file name.png')
im1 = image1.convert('RGB')
im1.save(r'path where the pdf will be stored\new file name.pdf')
Delightful Dolphin

Python конвертирует изображения в PDF

import img2pdf
import os
from datetime import datetime 

# convert all files ending in .jpg inside a directory
dirname = "C:/Projects/Python/ImageConverter/Image/"
imgs = []
for fname in os.listdir(dirname):
	if not fname.endswith(""):
		continue
	path = os.path.join(dirname, fname)
	if os.path.isdir(path):
		continue
	imgs.append(path)

# Save file as PDF to specific folder
root = 'C:\ConvertedImages'
today = datetime.today().strftime('%Y-%m-%d_%H-%M')
name = (today + '_Multiple.pdf')
filePath = os.path.join(root, name)


with open(filePath,"wb") as f:
	f.write(img2pdf.convert(imgs))
Seahawk

пиль в pdf

from PIL import Image

image1 = Image.open(r'path where the image is stored\file name.png')
im1 = image1.convert('RGB')
im1.save(r'path where the pdf will be stored\new file name.pdf')
Delightful Dolphin

Ответы похожие на “Python конвертирует изображения в PDF”

Вопросы похожие на “Python конвертирует изображения в PDF”

Больше похожих ответов на “Python конвертирует изображения в PDF” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования