s it possible to:
read an image given by just a filename (not knowing the image format) to a 2d matrix rgb uncompressed form (e.g. read an JPG to a 2d array) access the bytes of that image, copy them, change them... (e.g. inverse the colors, I need a pointer to the image bytes, setters/getters won't do )
rgb8_image_t img;
jpeg_read_image ("lena.jpg",img);
i use these to load the image. now how do i access the pixels or bytes of this image?