Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

pil img to pdf

from PIL import Image

image1 = Image.open(r'path where the image is storedfile name.png')
im1 = image1.convert('RGB')
im1.save(r'path where the pdf will be stored
ew file name.pdf')
Source by datatofish.com #
 
PREVIOUS NEXT
Tagged: #pil #img #pdf
ADD COMMENT
Topic
Name
2+9 =