This Python-based application provides a graphical user interface (GUI) for steganography, specifically focusing on hiding and revealing text messages within image files using the LSB (Least Significant Bit) technique.
- Tkinter: GUI library for Python.
- Pillow (PIL): Python Imaging Library for image processing.
- Stegano: Python library for LSB steganography.
- Open Image: Select an image file (PNG or JPG) to work with.
- Hide Message: Input a text message and hide it within the selected image.
- Save Image: Save the modified image with the hidden message.
- Show Message: Reveal and display the hidden message from a previously modified image.
Ensure you have Python 3.x installed, and install the required dependencies:
pip install Pillow
pip install stegano