I know that I can include xpm file format into code:
Code:
#include "image.xpm"
and it will be included within the binary, adding on to the image size.

However my issue is that xpm files aren't very optimized for size so if I want to add anything large, like a banner, It adds a very large size to my file

I was wondering what other image formats can be included like a header file and can be added to the binary, preferably a format that can be compressed a good deal

Thank you!