gpt4 book ai didi

java - 在java中将垂直字符串中的各个字母居中

转载 作者:行者123 更新时间:2023-12-01 23:52:18 25 4
gpt4 key购买 nike

好吧,我有一个垂直字符串,但是当它包含 I 或 L 时,它们会从字符串的其余部分偏移,因为它们的排版方式不同,它们在某种意义上在绘制的框中左对齐,与其余部分不同是居中绘制的。我想知道如何使这些字母与其他字母保持一致。同样重要的是,这些都是单独的拉绳调用。我尝试使用 AffineTransform,但它将所有字母混合在一起。这是我用来循环字符串并写入每个字符的代码。

for(int i =0; i<team.length();i++) 
{
gg.drawString(Character.toString(team.charAt(i)), 100, ypos-fm.getDescent());
ypos+=40;
}

如果你想测试一下,我使用的字符串是 BOLIVAR。提前致谢!

最佳答案

您可以尝试将文本围绕字符宽度居中

enter image description here

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class TestVerticalTexr {

public static void main(String[] args) {
new TestVerticalTexr();
}

public TestVerticalTexr() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
}

JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new BorderLayout());
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}

public class TestPane extends JPanel {

public TestPane() {
}

@Override
public Dimension getPreferredSize() {
return new Dimension(200, 200);
}

@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g.create();
String team = "BOLIVAR";
FontMetrics fm = g2d.getFontMetrics();
int ypos = fm.getHeight();
for (int i = 0; i < team.length(); i++) {
int x = 100 - (fm.charWidth(team.charAt(i)) / 2);
g2d.drawString(Character.toString(team.charAt(i)), x, ypos);
ypos += fm.getHeight();
}
g2d.dispose();
}
}
}

关于java - 在java中将垂直字符串中的各个字母居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16159837/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com