1

我正在使用 Prime-faces。在这里,我需要使用 java 在图像底部添加动态文本。即,我需要在图像上“书写”,并且需要将带有文本的图像保存在我想要的 PC 位置。

我试过这个:

public void writeToImage() throws MalformedURLException, IOException {
        final BufferedImage image = ImageIO.read(new URL(
                "http://upload.wikimedia.org/wikipedia/en/2/24/Lenna.png"));

        Graphics g = image.getGraphics();
        g.setFont(g.getFont().deriveFont(30f));
        g.drawString("Hello World!", 100, 100);
        g.dispose();

        ImageIO.write(image, "png", new File("test.png"));
    }

我如何实现它?

4

1 回答 1

0

您可以使用 Graphics 对象在 BufferedImage 上绘图:

Graphics2D g = (Graphics2D) image.getGraphics();
g.drawString("hello", x, y);
于 2013-07-21T11:13:59.537 回答