SkillAgentSearch skills...

Bin2png

A simple cross-platform script for encoding any binary file into a lossless PNG.

Install / Use

/learn @ESultanik/Bin2png
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

bin2png

A simple cross-platform script for encoding any binary file into a lossless PNG. Each pixel of the output image encodes three bytes of the input file: The first byte is encoded in the red channel, the second byte in the green channel, and the third byte in the blue channel. All files will be tail-padded with zeros so that they have a byte count that is a multiple of three. The dimensions of the output image are automatically calculated such that they are as close to a multiple of three as possible. If there are multiple dimensions that require minimal padding, the one that is closest to square is chosen. The width and height of the output image can also be optionally overridden.

bin2png is backward compatible with both Python 2 and Python 3.

On Windows, this is another solution: https://github.com/leeroybrun/Bin2PNG

Usage

$ pip install bin2png

$ bin2png file_to_encode -o output.png

$ bin2png -d output.png | diff - file_to_encode -s
Files - and file_to_encode are identical

Additional instructions are availble by running with the -h option.

Author

Evan Sultanik<br /> https://www.sultanik.com/<br />

Initial Python3 port by zenarcher007, along with implementation of the -v and -s options.

View on GitHub
GitHub Stars20
CategoryDevelopment
Updated12d ago
Forks8

Languages

Python

Security Score

90/100

Audited on Mar 25, 2026

No findings