Debbuger for visualizing image data

Is there a debugger (possibly free) that can render image buffers during debugging sessions. Sort of:

  • I stop at a breakpoint.
  • Then I select the image buffer, indicate the direction of the data - RBG, CMYK, 8bit, float, whatever.
  • I am shown an image (or it is saved) made from data.
+4
source share
1 answer

If you use gdb to debug your program, you can call your own (or some other library functions) that can render the image buffer for you (possibly in a separate window) from the gdb command line as soon as you reach the breakpoint.

+2
source

Source: https://habr.com/ru/post/1445493/


All Articles