Skip to content

Instantly share code, notes, and snippets.

View aathil-Mr-ITGuy's full-sized avatar
🎯
Focusing

Aathil Ahamed aathil-Mr-ITGuy

🎯
Focusing
  • D&B Properties
  • Dubai
  • 06:06 (UTC +04:00)
View GitHub Profile
@aathil-Mr-ITGuy
aathil-Mr-ITGuy / steganography.py
Last active October 3, 2019 19:25
Image Steganography using python
#we have to import Image from PIL library, as I sadi earlier PIL used to extract the details of image,
#specially pixels of image
from PIL import Image
def genrateData(payload_data):
newData = []
for i in payload_data: