I want to hide some text in image but i have a bug:
MY CODE:
from stegano import slsb
inImgePNG = input(Fore.RED+("ENTER PNG FILE NAME TO HIDE: "))
outImgePNG = input(Fore.WHITE+('ENTER PNG FILE NAME TO SAVE: '))
msg = input(Fore.WHITE+("ENTER A MSG TO HIDE: "))
#HIDE
hidingPNG =slsb.hide(inImgePNG , message=msg)
hidingPNG= hidingPNG.save(outImgePNG)
#UNHIDING:
unhidingPNG = input(Fore.BLUE+("ENTER PNG FILE NAME TO UNHIDE: "))
messagePNG = slsb.reveal(unhidingPNG)
print(Fore.RED+"REVEAL MESSAGE: "+messagePNG)
But i get this msg in cmd:
ENTER PNG FILE NAME TO HIDE: image.png
ENTER PNG FILE NAME TO SAVE: out.png
ENTER A MSG TO HIDE: hello world
Traceback (most recent call last):
File "k:EVILest.py", line 42, in
hidingPNG =slsb.hide(inImgePNG , message=msg)
File "C:UsersAdministratorAppDataLocalProgramsPythonPython39libsite-packagessteganoslsb.py", line 57, in hide
(r, g, b) = img.getpixel((col, row))
ValueError: too many values to unpack (expected 3)
Press any key to continue . . .
What should i do to solve this bug?
question from:
https://stackoverflow.com/questions/65881077/use-stegano-to-hide-a-text-in-png-by-python 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…