Binary visualiser written in C using RayLib.
$ ./binvis [-a <alpha>] [--m] [-w <window width>] [-h <window height>] -f <file>-aspecifies the alpha step (greater alpha, brighter pixels - 255 is max)--mspecifies to use max mode (the most referenced pixel will be the brightest)-wspecifies the window width-hspecifies the window height-fspecifies the path to the file to be visualised (required)
<ESC>to close the window<F1>to take screenshot and save it toscreenshot.png
- Create a build directory
$ mkdir build- Compile the project
$ cmake -B build -S .
$ cmake --build build- Run the project
$ ./build/src/binvis -f <file>