“PIL IMG do PDF” Kod odpowiedzi

PIL IMG do 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

PIL IMG do 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

Odpowiedzi podobne do “PIL IMG do PDF”

Pytania podobne do “PIL IMG do PDF”

Więcej pokrewnych odpowiedzi na “PIL IMG do PDF” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu