I’m trying to save a really big image about 3500 pixels wide, rigth now I’m using the clasic saveImage method:
imgOutput.grabScreen(0,0,3500, 1300);
imgOutput.saveImage("test.png");
but the image saved only show the visible portion of the window, the hidden sections are saved as black pixels.
Exist a method to save an image of the entire window? not only the visible part?
Thanks