Created
January 22, 2019 17:31
-
-
Save lol97/66d318a871db941567c9bcc920f704d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| Stegano Code | |
| with | |
| library stegano | |
| sufyan97 | |
| install stegano | |
| pip install stegano | |
| ''' | |
| #import lsb method | |
| from stegano import lsb | |
| # insert message | |
| secret = lsb.hide("cat.png","hai") | |
| #save image | |
| secret.save("cat-sec.png") | |
| #show message | |
| print(lsb.reveal("cat-sec.png")) | |
| #THANKS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment