繁体   English   中英

java.awt.font 字母间距

[英]java.awt.font letter spacing

使用 java.awt.font 时是否可以增加字母间距? 像这样:

Font font = new Font("serif", Font.PLAIN, 21);
//Increase the spacing - perhaps with deriveFont()?

BufferedImage image = new BufferedImage(400, 600, BufferedImage.TYPE_INT_RGB);
Graphics2D graphics = image.createGraphics();
graphics.setFont(font);
graphics.drawString("testing",0,0);

您可以派生一种新字体,具有更新的跟踪属性:

Map<TextAttribute, Object> attributes = new HashMap<TextAttribute, Object>();
attributes.put(TextAttribute.TRACKING, 0.5);
Font font2 = font.deriveFont(attributes);
gr.setFont(font2);
gr.drawString("testing",0,20);

通用的“将此文本置于宽度为 w 的容器内的当前字体中心”可能是:

    /**
     * Calculates the x-coordinate to use to center the specified message
     * horizontally during a subsequent call to g.drawString().
     * 
     * @param g       - the instance of the Graphics object to use.
     * @param message - the string containing the message to be centered.
     * @param width   - the width of the container to center the message in.
     * @return - the integer x-coordinate to use in a subsequent call to
     *             g.drawString()
     */
    private int centerMessageHorizontal(Graphics g, String message, int width)
    {
        FontMetrics fontMetrics = g.getFontMetrics();
        int textWidth = fontMetrics.stringWidth(message);
        return width / 2 - textWidth / 2;
    }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM