Call this in your onStart() (only needs to be set one time)
private BufferedImage img = null;
private void setBuffImage(){
try {
img = ImageIO.read(new URL("URL TO IMAGE"));
} catch (IOException e) { } }
Then, inside your onPaint():
if(img != null) g.drawImage(img, 0, 335, null);