Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mauricelambert/steganograpy
This package hide text or bytes in image.
https://github.com/mauricelambert/steganograpy
pypi-package python3 steganography
Last synced: about 10 hours ago
JSON representation
This package hide text or bytes in image.
- Host: GitHub
- URL: https://github.com/mauricelambert/steganograpy
- Owner: mauricelambert
- License: gpl-3.0
- Created: 2021-05-05T17:17:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-05T17:19:04.000Z (over 3 years ago)
- Last Synced: 2023-12-29T21:43:01.081Z (11 months ago)
- Topics: pypi-package, python3, steganography
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# SteganograPy
## Description
This package hide text or bytes in image (PNG only).## Requirements
This package require :
- python3
- python3 Standard Library
- pillow## Installation
```bash
pip install SteganograPy
```## Usages
### Command line:
```bash
Stegano -m "My message !" image.jpg
python3 -m SteganograPy -d image_stegano.png
```### Python script
```python
from SteganograPy import SteganoStegano(
"image.jpg",
message="My message.",
color="red",
output_file=None,
).build_and_save_new_image()print(Stegano(
"image_stegano.png",
message=None,
color="red",
output_file=None,
).get_message().decode())
```## Command line examples
```bash
Stegano -h
Stegano -m "My message !" image.jpg
Stegano -f test.txt -c green -o test.jpg image.jpg
Stegano -d image_stegano.png
Stegano -c green -d image.png
```## Links
- [Github Page](https://github.com/mauricelambert/SteganograPy/)
- [Documentation](https://mauricelambert.github.io/info/python/security/SteganograPy.html)
- [Python executable](https://mauricelambert.github.io/info/python/security/SteganograPy.pyz)
- [Pypi package](https://pypi.org/project/SteganograPy/)## Licence
Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).