A C library for creating and drawing images using the PPM image format.

update gitignore and readme

Clay a5fc03fd f44b80bc

Changed files
+7 -9
+2 -1
.gitignore
··· 1 1 .out 2 2 *.ppm 3 - .vscode 3 + .vscode 4 + Makefile
-7
Makefile
··· 1 - all: default 2 - 3 - build: 4 - gcc -o .out main.c ppm.c -lm 5 - 6 - clean: 7 - rm .out *.ppm
+5 -1
README.md
··· 1 1 # Portable Pixel Map Library 2 2 3 - I 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. 3 + I 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 + 7 + Copy 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`.