Coding Expert Team
Please open Telegram to view this post
VIEW IN TELEGRAM
❤14🗿8👍7 7❤🔥2
Please open Telegram to view this post
VIEW IN TELEGRAM
# pip install stegano
from stegano import lsb
secret = lsb.hide('image.png', 'very secret text')
secret.save('secret_image.png')
print(lsb.reveal('secret_image.png'))
Please open Telegram to view this post
VIEW IN TELEGRAM
# pip install rembg pillow
from rembg import remove
from PIL import Image
input_path = "in.png"
output_path = "out.png"
input = Image.open(input_path)
output = remove(input)
output.save(output_path)
Please open Telegram to view this post
VIEW IN TELEGRAM