// figure the dimensions out
final Rectangle bounds = getBounds();
final Insets insets = getInsets();
final int width = bounds.width-insets.left-insets.right;
final int height = topOffset+6*font18Height+5*lineSpacing; // 6 lines
offsetPolys = new ClickableOffsetPolygons();
fullNotice = new BufferedImage(width, height, BufferedImage.TYPE_4BYTE_ABGR);
Graphics2D g2d = (Graphics2D) fullNotice.getGraphics();
g2d.setColor(ColorProvider.getStringColor(((TradingOfficeDialogMataData)metaData).balance));
Font font =fontLoader.createDefaultFont(18);
font = font.deriveFont(Font.BOLD);