A simple Python script that allows users to select images from their computer, convert them into a single PDF file, and then clean up the input folder by deleting all the images. This program uses the Pillow
library for image manipulation and tkinter
for the file selection dialog.
- Opens a file explorer window for selecting images.
- Converts selected images into a single PDF file.
- Supports multiple image formats: PNG, JPG, JPEG, and GIF.
- Cleans up the source folder by deleting all images after conversion.
- Python 3.x
- Required Python libraries:
Pillow
(Python Imaging Library)tkinter
(standard library for Python)
Aditya Shinde