stegosphere.image module¶ class stegosphere.image.LSB(image)¶ Bases: ImageHandler, BaseLSB Implements LSB (Least Significant Bit) steganography for hiding messages in images. Parameters: image (numpy.ndarray, str, list, or tuple) – The image data, either a NumPy array, file path, or list/tuple. class stegosphere.image.PVD(image)¶ Bases: ImageHandler, BaseVD Implements PVD (Pixel Value Differencing) steganography for hiding messages in images. Parameters: image (numpy.ndarray, str, list, or tuple) – The image data, either a NumPy array, file path, or list/tuple.