Posts

Showing posts with the label steganography

🔐 FuzzuTech – Steganography Tool GUI | Hide Messages in Images (Python App)

Image
  Demo : Click Video 👇👇👇 ✨ Features : Encode & decode hidden messages 100% offline Dark mode GUI PNG support Built with Python PIL + customtkinter Code : import customtkinter as ctk from tkinter import filedialog from PIL import Image import io ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") app = ctk.CTk() app.geometry("500x600") app.title("Steganography Tool – FuzzuTech") def encode_image():     filepath = filedialog.askopenfilename()     if not filepath: return     img = Image.open(filepath)     message = text_entry.get("1.0", "end-1c")     encoded = img.copy()     binary_msg = ''.join(format(ord(i), '08b') for i in message)     binary_msg += '1111111111111110'  # EOF marker     pixels = list(encoded.getdata())     for i in range(len(binary_msg)):         r, g, b = pixels[i]         r = (r & ~1) ...