This is a simple Image Encryption and Decryption Tool written in Python using the Pillow library. It works by modifying the RGB values of each pixel based on a user-provided numeric key.
- 🔁 Encrypts and decrypts
.jpg,.jpeg,.pngimages using pixel value manipulation. - 🔐 Key-based encryption: Only users with the correct numeric key can decrypt the image.
- 🧠 Uses basic image processing concepts and is great for beginners learning Python + PIL.
Make sure Python is installed. Then, install Pillow:
pip install pillow