A C library for creating and drawing images using the PPM image format.
1# Portable Pixel Map Library
2
3I originally made this because I was watching a [video](https://youtu.be/dCqIKDo_Hkc?si=F_H5uxOoQ06eCzkw) from [Jacob Sorber](https://www.youtube.com/@JacobSorber) that show PPM as a very easy to use image format for beginners. I've been interested in making more things in C and I thought this would be a fairly easy exercise at creating my own PPM library.
4
5## How to Use
6
7Copy both the `ppm.h` and `ppm.c` to your project folder. Then, to compile it alongside your main program file run `gcc ... ppm.c -lm`.