A simple image editing application built with Python and PyQt5.
If you don't have Python installed, you can just download and run the standalone Windows Executive ($ .exe $) file: 👉 Download ImageEditingApp.exe (Just click and run!)
- Rotate: 90 degrees Left or Right.
- Mirror: Horizontal flip.
- Filters: Black & White, Sharpness, Blur, Saturation, Contrast.
- Save: Export edited images in various formats (PNG, JPG, JPEG).
- Python 3.x
- PyQt5
- Pillow (PIL)
-
Clone the repository:
git clone https://github.com/your-username/image-editing-app.git cd image-editing-app -
Install dependencies:
pip install -r requirements.txt
Run the application using Python:
python ImageEditingApp.pyCheck out the demo recording: Sample Screen Recording.mp4
This version is optimized for efficiency:
- Uses in-memory image processing to minimize disk I/O.
- Lightweight UI using PyQt5 for low CPU and memory usage.
- Standard libraries only to keep it clean.