Comment puis-je centrer les graphismes.drawString () en Java?

je travaille actuellement sur le système de menu pour mon Java jeu, et je me demande comment je peux centrer le texte de Graphics.drawString() , de sorte que si je veux dessiner un texte dont le point central est à X: 50 et Y: 50 , et le texte est 30 pixels large et 10 pixels haut, le texte commencera à X: 35 et Y: 45 .

puis-je déterminer la largeur du texte avant de me dessiner?

Puis il il serait facile de mathématiques.

EDIT: je me demande aussi si je peux obtenir la hauteur du texte, de sorte que je peux le centrer verticalement aussi.

toute aide est appréciée!

22
demandé sur Daniel Kvist 2014-12-30 16:15:40

2 réponses

j'ai utilisé la réponse sur cette question .

le code que j'ai utilisé ressemble à quelque chose comme ceci:

/**
 * Draw a String centered in the middle of a Rectangle.
 *
 * @param g The Graphics instance.
 * @param text The String to draw.
 * @param rect The Rectangle to center the text in.
 */
public void drawCenteredString(Graphics g, String text, Rectangle rect, Font font) {
    // Get the FontMetrics
    FontMetrics metrics = g.getFontMetrics(font);
    // Determine the X coordinate for the text
    int x = rect.x + (rect.width - metrics.stringWidth(text)) / 2;
    // Determine the Y coordinate for the text (note we add the ascent, as in java 2d 0 is top of the screen)
    int y = rect.y + ((rect.height - metrics.getHeight()) / 2) + metrics.getAscent();
    // Set the font
    g.setFont(font);
    // Draw the String
    g.drawString(text, x, y);
}
43
répondu Daniel Kvist 2017-05-23 11:47:32

quand je dois dessiner du texte, je dois généralement centrer le texte dans un rectangle.

/**
 * This method centers a <code>String</code> in 
 * a bounding <code>Rectangle</code>.
 * @param g - The <code>Graphics</code> instance.
 * @param r - The bounding <code>Rectangle</code>.
 * @param s - The <code>String</code> to center in the
 * bounding rectangle.
 * @param font - The display font of the <code>String</code>
 * 
 * @see java.awt.Graphics
 * @see java.awt.Rectangle
 * @see java.lang.String
 */
public void centerString(Graphics g, Rectangle r, String s, 
        Font font) {
    FontRenderContext frc = 
            new FontRenderContext(null, true, true);

    Rectangle2D r2D = font.getStringBounds(s, frc);
    int rWidth = (int) Math.round(r2D.getWidth());
    int rHeight = (int) Math.round(r2D.getHeight());
    int rX = (int) Math.round(r2D.getX());
    int rY = (int) Math.round(r2D.getY());

    int a = (r.width / 2) - (rWidth / 2) - rX;
    int b = (r.height / 2) - (rHeight / 2) - rY;

    g.setFont(font);
    g.drawString(s, r.x + a, r.y + b);
}
2
répondu Gilbert Le Blanc 2014-12-30 19:08:49