mirror of
https://github.com/metafy-social/python-scripts.git
synced 2024-11-27 22:11:10 +00:00
5 lines
180 B
Python
5 lines
180 B
Python
from PIL import Image
|
|
|
|
image1 = Image.open(r'C:\Users\user\Downloads\png-to-pdf.png')
|
|
impdf = image1.convert('RGB')
|
|
impdf.save(r'C:\Users\user\Downloads\png-to-pdf.pdf') # noqa |