Binary visualiser written in C using RayLib.
$ ./binvis [-a <alpha>] [--m] [-w <window width>] [-h <window height>] -f <file>
-a
specifies the alpha step (greater alpha, brighter pixels - 255 is max)--m
specifies to use max mode (the most referenced pixel will be the brightest)-w
specifies the window width-h
specifies the window height-f
specifies 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>