ImageEncoder_demo.mp4
pip install git+https://github.com/arulh/PyStegSuite.git
from PIL import Image
from stegimage import encode_stencil, decode_stencil
im = Image.open("./resources/image.png")
encoded_im, key = encode_stencil("hello world", img=im, text_size=50, text_coords=(50, 50))decoded_im = decode_stencil(key, img=encoded_im)

