Is there a debugger (free if possible) that can visualize image buffers during debugging sessions.
Something like:
- I stop at breakpoint.
- Then I select an image buffer, give directions of what the data is – RBG, CMYK, 8bit, float, whatever.
- I am shown an image (or it is saved) made from the data.
If you are using gdb to debug your program, you can call your own(or some other library functions) that can visualize the image buffer for you(possibly in a separate window) from the gdb prompt once you reach a breakpoint.