The Image Compression Tool is a Python application designed to compress images in a selected folder, optimizing image quality and saving space. It utilizes the PIL
(Pillow) library for image operations and tkinter
for the graphical user interface (GUI).
- Compress Images: Reduces the size of JPEG and PNG images.
- Folder Compression: Compresses all images in a specified folder and saves them to a new folder.
- Statistics Display: Provides detailed statistics on data saved and file sizes before and after compression.
- User-Friendly GUI: Simple interface to select folders and view compression results.
- Python 3.x
- Pillow: Python Imaging Library for image processing.
- tkinter: Standard GUI toolkit for Python (typically included with Python installations).
- Install Pillow:
pip install pillow