!747 !image classes m { static Color background = Color.white; static Color foreground = Color.black; p { Font font = loadFont("#1000993"); // Brother Deluxe Font BufferedImage img = new BufferedImage(600, 300, BufferedImage.TYPE_INT_RGB); Graphics g = img.getGraphics(); int w = img.getWidth(), h = img.getHeight(); g.setColor(background); g.fillRect(0, 0, w, h); g.setColor(foreground); g.setFont(font.deriveFont(30f)); g.drawString("Hello world!", 50, 50); g.dispose(); showImage(img); } }