• Hello!

    In order to produce screenshots, I tried to read the contents of the screen, pixel per pixel.

    But when I try

    g.setPixel(0,0, 14);
    print(g.getPixel(0,0));
    

    all I receive is 0 - when running in resolutions 240x240 and 240x160 (aka 'doublebuffered')

    How can I get the contents of a higher resolving display?

About