<a href="https://github.com/GKFX"><img src="https://avatars.githubusercontent.com/u/5357642?" align="left" width="96" height="96" hspace="10"></img></a> **Issue by [GKFX](https://github.com/GKFX)** _Saturday May 31, 2014 at 12:19 GMT_ _Originally opened as https://github.com/processing/processing-android-archive/issues/68_ --- The simplest form of this is: ``` Java PGraphics pg = createGraphics(100, 100); pg.background(100); //optional image(pg, 0, 0); ``` To rectify it, you need to type: ``` Java PGraphics pg = createGraphics(100, 100); pg.background(#ff0000); //optional pg.loadPixels(); image(pg, 0, 0); ```