Files
imageviewer/README.md
2026-01-31 12:43:20 +05:00

20 lines
232 B
Markdown

# Simple image viewer for `.ppm` types of images
[Source code](iv.c)
## Build with
```bash
gcc -Wall -Wextra -g -o iv iv.c `sdl2-config --cflags --libs`
```
## Run with
```
cat image.ppm | ./iv
```
### Dependencies
* `sdl2`