有一个完全用 PHP 开发的网站,带有 GD 库,主要处理在随机图像上打印文本。
文本必须以大约 100 种规定的 TTF 字体(位于 .php 文件附近的目录中)中的任何一种以十几种规定的颜色打印,并且需要根据几种规定的算法中的任何一种来指定文本的位置。
这是通过使用 imagettfbox() 解决的,它返回文本的几何形状,然后使用 imagettftext() 将其映射到图像上。
我可以在 Java 中使用什么来实现与 servlet/bean 相同的功能?我可以将 TTF 字体放在任何我需要的地方。在 Windows 中注册它们是不可取的,但如果这是我们唯一的选择(目前不是)。
@LexLythius:
从您的链接和其他一些资源中,我拼凑了一个在图形上绘制文本的工作解决方案:
// file is pointed at the image
BufferedImage loadedImage = ImageIO.read(file);
// file is pointed at the TTF font
Font font = Font.createFont(Font.TRUETYPE_FONT, file);
Font drawFont = font.deriveFont(20); // use actual size in real life
Graphics graphics = loadedImage.getGraphics();
FontMetrics metrics = graphics.getFontMetrics(drawFont);
Dimension size = new Dimension(metrics.getHeight(), metrics.stringWidth("Hello, world!"));
graphics.setFont(drawFont);
graphics.setColor(new Color(128, 128, 128); // use actual RGB values in real life
graphics.drawString("Hello, world!", 10,10); // use Dimension to calculate position in real life
剩下的就是在 servlet 中显示该图像并决定哪些功能在哪里 - 到 servlet 或 bean。