반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- GIT
- gas
- numpy
- array
- list
- Mac
- PySpark
- Redshift
- Google Spreadsheet
- c#
- Github
- django
- Java
- dataframe
- Tkinter
- google apps script
- Kotlin
- hive
- SQL
- Google Excel
- Excel
- PANDAS
- matplotlib
- string
- Python
- math
- 파이썬
- PostgreSQL
- Apache
Archives
- Today
- Total
목록convert png to pdf (1)
달나라 노트
Python PIL/Pillow : Image (Python으로 image를 pdf로 변환하기, 이미지 형식 변환, 이미지 확장자 변환, webp to png, jpeg to png)
Python을 이용해 image 파일을 pdf로 변환하는 방법을 알아봅시다. pip install PIL pip install Pillow 사용되는 라이브러리는 PIL 입니다. PIL이 간혹 설치가 제대로 되지 않는 경우가 있을 수 있는데 그럴 땐 Pillow 패키지를 설치합시다. (Pillow 패키지를 설치해도 PIL 라이브러리는 이용할 수 있습니다.) from PIL import Image img = Image.open(r'test/img_test_1.png') img_rgb = img.convert('RGB') img_rgb.save('test/pdf_test_1.pdf') 위 예시는 test directory에 있는 img_test_1.png라는 이미지파일을 test directory안에 pdf_..
Python/Python ETC
2021. 7. 26. 21:57