gpt4 book ai didi

java - 使用文本框更改 Java 中的字体大小

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

好吧,所以我需要一点帮助,我正在使用一组变量来声明我的字体等,我已经通过使用deriveFont方法使粗体和斜体功能起作用 - 创建新字体并应用新字体风格等

这个比较棘手,因为我从文本框中获取值并将其应用于 fontSize 变量,然后将其应用于我在那里的 currentFont...

帮忙?! :(

下面是我的代码片段...

public class Practice01 extends javax.swing.JFrame {

private int fontStyle;
private int fontSize = 12;


private void changeSize(){

Font currentFont = edtText.getFont(); //getting the current font
fontSize = Integer.parseInt(txtSize.getText()); //getting the number input from the text box and putting it to the fontSize variable
txtSize.setText(Integer.toString(fontSize)); //setting the txtSize entry to the fontSize variable?
currentFont.deriveFont(fontSize); //deriving a new font
edtText.setFont(currentFont.deriveFont(fontSize)); //setting the new font and size to the text box.


}

这是我的字体变量位...

Font serifFont;
Font monoFont;
Font sansserifFont;

public Practice01() {
serifFont = new Font ("Serif", fontStyle, fontSize);
monoFont = new Font ("Monospaced", fontStyle, fontSize);
sansserifFont = new Font ("SansSerif", fontStyle, fontSize);
initComponents();
}

最佳答案

请注意,Font#derive(int) 更改的是字体样式,而不是大小,您可以尝试使用 Font#deriveFont(float)用于更改字体大小...

此外,deriveFont 根据您提供的值创建 Font 的新实例,因此您需要维护对其的引用,例如...

Font font = currentFont.deriveFont((float)fontSize); //deriving a new font
edtText.setFont(font);

用示例更新

enter image description here

import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class FontTest {

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

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

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

public class TestPane extends JPanel {

private JTextField field;

public TestPane() {
setLayout(new GridBagLayout());
field = new JTextField(5);
add(field);
field.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String text = field.getText();
try {
float size = Float.parseFloat(text);
Font font = field.getFont();
font = font.deriveFont(size);
field.setFont(font);
revalidate();
} catch (Exception exp) {
exp.printStackTrace();
}
}
});
}

}

}

关于java - 使用文本框更改 Java 中的字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21924748/

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