• Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
AnonyViet - English Version
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
No Result
View All Result
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office
No Result
View All Result
AnonyViet - English Version
No Result
View All Result

How to create secret messages in photos with python

AnonyViet by AnonyViet
April 24, 2025
in Tips
0

Today, I will show you how to apply encrypted skills, by hiding secret codes or secret messages in the photo Python. Steganography is a technique used for quite a long time. Since World War II, it has been used as a way of communication between allies and preventing information that has been revealed by enemies. I will show you how to do this with two different techniques, one technique related to Secret Key and the other.

Join the channel Telegram belong to Anonyviet 👉 Link 👈

How to create secret messages in photos with python

Request

You install Python and then continue to install the two libraries below.

Setting

pip install steganocryptopy
pip install stegano

Note: If you use Linux, replace PIP to PIP3.

How to the secret message in the photo does not need the key

I will hide the text in the image without any encryption lock, so the recipient can decode and get hidden text very easy.

Advantage

The advantage of this is that it is very simple so you will not have to solve any troubles.

Disadvantages

Anyone can decode as long as they use the same library that you have used during the encryption process.

Syntax

from stegano import lsb
secret = lsb.hide(path_to_img, secret_msg)
secret.save(ecrypted_img_name)

You must have a sample image in your project folder to hide the notice, next we must provide the path to the prepared image.

For example

>>> from stegano import lsb
>>> secret = lsb.hide("sample.png", "Python is dangerous be careful")
>>> secret.save("sample_secret.png")

Note: Because the Sample.png file is in the same folder as the execution file .py, just write the image file name is enough. If the image file is different from the folder, you need to fully record the path.

Now if you look at the project folder, you will realize there is a new image with the name sample_secret.png. Looking at or looking closely, you don’t know where there are messages hidden in it, right?

Decode

Make sure the image has a hidden text in your project directory.

Syntax

>>> from stegano import lsb
>>>lsb.reveal(path_to_an_image)

For example

>>> from stegano import lsb
>>>lsb.reveal('sample_secret.png')
'Python is dangerous be careful'

Done, now we will go into the way of hiding text in the image with Secret Key.

How to hide text in images with Secret Key

I will hide the secret text along with an encryption lock to decipher it. Therefore, only the key can decode it.

Advantage

It is very safe because only those with the key can decipher it.

Disadvantages

When the encryption key is lost, the decoding process will be a bit complicated.

Syntax

>>>from steganocryptopy.steganography import Steganography
>>> Steganography.generate_key(path_to_key)
>>> encrypted = Steganography.encrypt(path_to_key, path_to_img, path_to_secretfile)
>>> encrypted.save(encrypted_imgname)

For example

Suppose I have a key file called keya file containing a hidden notice called Classified.us And the image is named Sample.png.

>>>from steganocryptopy.steganography import Steganography
>>> Steganography.generate_key("key")
>>> encrypted = Steganography.encrypt("key","sample.png",  "classified.us")
>>> encrypted.save("Secret.png")

Now when you run the above code, you will see a new image on your project folder Secret.png.

Decode

To decode the image, you will need a file key And your encrypted image.

Syntax

>>> from steganocryptopy.steganography import Steganography
>>> Steganography.decrypt(path_to_key, path_to_image)

For example

>>> from steganocryptopy.steganography import Steganography
>>> Steganography.decrypt("key", "Secret_img.png")
'Life is short you need Python\n'

Congratulations, you have just learned how to hide secret messages in the image, now don’t be afraid to share messages with your friends.

Previous Post

Anyviewer: remote computer control on Android super easy

Next Post

Instructions for using anyone to delete noise in the video

AnonyViet

AnonyViet

Related Posts

Windows 7/8.1/10 users will be upgraded to Windows 11 for free
Tips

Windows 7/8.1/10 users will be upgraded to Windows 11 for free

July 30, 2026
Instructions for receiving ChatGPT Plus for 1 month for free in 2026
Tips

Instructions for receiving ChatGPT Plus for 1 month for free in 2026

July 28, 2026
Some reasons I don’t like Windows 11
Tips

Some reasons I don’t like Windows 11

July 27, 2026
Instructions on how to get free Facebook white ticks
Tips

Instructions on how to get free Facebook white ticks

July 27, 2026
Collection of Windows 11 wallpapers for computers and phones
Tips

Collection of Windows 11 wallpapers for computers and phones

July 26, 2026
Don’t install leaked Windows 11
Tips

Don’t install leaked Windows 11

July 25, 2026
Next Post
Instructions for using anyone to delete noise in the video

Instructions for using anyone to delete noise in the video

0 0 votes
Article Rating
Subscribe
Login
Notify of
guest

guest

0 Comments
Oldest
Newest Most Voted

Recent News

Windows 7/8.1/10 users will be upgraded to Windows 11 for free

Windows 7/8.1/10 users will be upgraded to Windows 11 for free

July 30, 2026
Instructions for receiving the free Certified LLM Security Expert certificate

Instructions for receiving the free Certified LLM Security Expert certificate

July 30, 2026
MSI laptops are not just for gamers: Which line is suitable for students, office workers and creative people?

MSI laptops are not just for gamers: Which line is suitable for students, office workers and creative people?

July 29, 2026
What is quantum resistant cryptography? Why must the Internet change?

What is quantum resistant cryptography? Why must the Internet change?

July 29, 2026
Windows 7/8.1/10 users will be upgraded to Windows 11 for free

Windows 7/8.1/10 users will be upgraded to Windows 11 for free

July 30, 2026
Instructions for receiving the free Certified LLM Security Expert certificate

Instructions for receiving the free Certified LLM Security Expert certificate

July 30, 2026
MSI laptops are not just for gamers: Which line is suitable for students, office workers and creative people?

MSI laptops are not just for gamers: Which line is suitable for students, office workers and creative people?

July 29, 2026
AnonyViet - English Version

AnonyViet

AnonyViet is a website share knowledge that you have never learned in school!

We are ready to welcome your comments, as well as your articles sent to AnonyViet.

Follow Us

Contact:

Email: anonyviet.com[@]gmail.com

Main Website: https://anonyviet.com

Recent News

Windows 7/8.1/10 users will be upgraded to Windows 11 for free

Windows 7/8.1/10 users will be upgraded to Windows 11 for free

July 30, 2026
Instructions for receiving the free Certified LLM Security Expert certificate

Instructions for receiving the free Certified LLM Security Expert certificate

July 30, 2026
  • Home
  • Home 2
  • Home 3
  • Home 4
  • Home 5
  • Home 6
  • Next Dest Page
  • Sample Page

say88 tỷ lệ kèo nhà cái kèo nhà cái 5 febet

No Result
View All Result
  • Home
  • News
  • Software
  • Knowledge
  • MMO
  • Tips
  • Security
  • Network
  • Office

say88 tỷ lệ kèo nhà cái kèo nhà cái 5 febet

wpDiscuz
0
0
Would love your thoughts, please comment.x
()
x
| Reply