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

Python PDF для изображения

#The pdf2image library can be used
#You can install it simply using,

pip install pdf2image
#Once installed you can use following code to get images.

from pdf2image import convert_from_path
pages = convert_from_path('pdf_file', 500)

#Saving pages in jpeg format

for page in pages:
    page.save('out.jpg', 'JPEG')
Doubtful Dingo

изображение в PDF Python

#pip install img2pdf
import img2pdf
with open("name.pdf","wb") as f:
	f.write(img2pdf.convert(['a.png','b.png']))
    
Frail Frog

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 Python

#pip install img2pdf
import img2pdf
with open("name.pdf","wb") as f:
	f.write(img2pdf.convert(['a.png','b.png']))
Frail Frog

Python Save Image в 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

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

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

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

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

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