[Python] Python - Pillow Library [Python] Python - Pillow Library
🖼️
Steganographia
Week 9, 2026
from PIL import Image
def Decode(imgP):
img = Image.open(imgP).convert("RGB")
pixels = list(img.getdata())
message = ""
for r, g, b in pixels:
message += chr(r) + chr(g) + chr(b)
return message
file = open("ans.txt", 'w')
file.write(Decode("message.png"))
file.close()