我在现有图像上写了一些文字,字体不是很清晰。Graphics2D 或 Font 类是否有一些设置可以帮助在图像上书写文本时字体看起来更好?当我写它时,Dante 字体并没有像 Dante 一样出现。我尝试使用抗锯齿,但没有效果(请参阅 setRenderingHint)。无论有没有 RenderingHint 集,图像的结果都是一样的。有什么建议么?
public class ImageCreator{
public void createImage(String text){
Graphics2D g = img.createGraphics(); //img is a BufferedImage read in from file system
g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
Font fnt=new Font("Dante",1,20);
Color fntC = new Color(4, 4, 109);
g.setColor(fntC);
g.setFont(fnt);
Dimension d = new Dimension(200, 113);
drawCenteredString(text, d.width, d.height, g);
}
public static void drawCenteredString(String s, int w, int h, Graphics g) {
FontMetrics fm = g.getFontMetrics();
int x = (w - fm.stringWidth(s)) / 2;
int y = (fm.getAscent() + (h - (fm.getAscent() + fm.getDescent())) / 2);
g.drawString(s, x, y);
}
}