In the GreenfootImage javadoc,
/**
public GreenfootImage(java.lang.String string, int size, Color foreground, Color background)
foreground - the color of the text. Since Greenfoot 3.0.4, passing null will use black.
background - the color of the image behind the text. Since Greenfoot 3.0.4, passing null with leave the background transparent.
*/
but,if I pass the "null" this parameter will be throw a NullPointException.

