I am writing a program that creates an image file. I want the "original" image to be hard-coded in the program's binary.
I was thinking...
char image[] = {
#include"image.jpg"
}
But I need to somehow convert the image into a format that can be #included into a c file as a char array?