Color c = new Color(mapContext.getBgColor().getRed(),
mapContext.getBgColor().getGreen(), mapContext
.getBgColor().getBlue(), 0);
graphic.setBackground(mapContext.getBgColor());
graphic.setColor(c);
graphic.fillRect(0, 0, width, height);
type = AlphaComposite.SRC_OVER;
graphic.setComposite(AlphaComposite.getInstance(type));
}