我需要创建一个具有界面缩放功能的应用程序。我有一个带有图标和 jpanel 的按钮,用于保存此按钮。问题是当缩放打开时 - 一个图标模糊,为了解决这个问题,我在paintComponent中使用了缩小。当系统规模打开时,我有正常的图像,结果。但是 JPanel 仍然具有缩放尺寸。我也尝试覆盖 JPanel 的paintComponent,但结果我的按钮太小了,因为按钮上的缩小和JPanel 上的缩小一起工作。我不能仅从 JPanel 使用缩放,当我单击一个按钮时,它会缩放大小并且图像再次模糊。这是一个简单的例子。
代码是:
public class Test{
public static void main(String[] args) throws Exception{
System.setProperty("sun.java2d.uiScale", "1.5");
JFrame j = new JFrame();
Image img = ImageIO.read(new File("D:\\1.png"));
j.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
j.setPreferredSize(new Dimension(300, 150));
j.setVisible(true);
j.setLocationRelativeTo(null);
j.setLayout(new BorderLayout());
img = img.getScaledInstance((int) (60 * 1.5),(int) (60 * 1.5),Image.SCALE_DEFAULT);
JToggleButton tb = new JToggleButton(){
@Override
protected void paintComponent(Graphics g) {
Graphics2D g2 = (Graphics2D) g;
g2.scale(0.67,0.67);
super.paintComponent(g2);
}
};
tb.setIcon(new ImageIcon(img));
JToggleButton tb2 = new JToggleButton(){
@Override
protected void paintComponent(Graphics g) {
Graphics2D g2 = (Graphics2D) g;
g2.scale(0.67,0.67);
super.paintComponent(g2);
}
};
tb2.setIcon(new ImageIcon(img));
JPanel jPanel = new JPanel(){
};
jPanel.setLayout(new GridLayout(1,1));
jPanel.add(tb);
jPanel.setBackground(Color.RED);
JPanel content = new JPanel();
content.setLayout(new FlowLayout());
content.add(jPanel);
j.setContentPane(content);
j.pack();
}
我使用 java10。谢谢你。
一只萌萌小番薯
相关分类