Hide secret messages by subtly shifting letters in cover text images
This method hides data by shifting letters in cover text images by 1 pixel in one of eight directions, encoding 3 bits per character. The output is a rectangular PNG image that looks like normal text but contains hidden information via pixel-level letter shifts.
Upload a PNG image produced by the letter shift steganography encoder to reveal the hidden message.
This technique hides secret data by shifting each letter in the cover text image by 1 pixel in one of eight possible directions. Each direction encodes 3 bits (one of 8 values), allowing data to be embedded at a rate of 3 bits per cover character.
The resulting image looks like a normal text rectangle, but the subtle pixel shifts encode the secret message.
The decoder extracts each letter tile from the PNG image, computes a hash for each tile, and matches it to a precomputed hash table to recover the offset direction, then converts offsets back to 3-bit chunks, reconstructing the secret message in binary and finally ASCII text.
Security Considerations