DataToPixel is a Python module that converts arbitrary ASCII data into images, and back.
DataToPixel_Grayscale.py | ||
DataToPixel_RGB.py | ||
PixelToData_Grayscale.py | ||
PixelToData_RGB.py | ||
README.md |
DataToPixel
DataToPixel is a Python script that can store files as PNG pixelmaps of ASCII values, as well as a script to convert the images back into their original format.
DataToPixel goes through every character in a file, and stores its numeric ASCII value as a pixel value in the converted image, which is automatically saved as a PNG. The grayscale script encodes one ASCII character per pixel, where the RGB script encodes three per pixel: one in each color channel of each pixel.
Dependencies
Requires Python Imaging Library (PIL)