Java Изменение размера изображения ImageIcon для различных Windows настроек масштабирования - PullRequest
0 голосов
/ 18 марта 2020

Я пытаюсь создать небольшое приложение Swing, используя Zulu JDK 11. В нижней правой части у меня есть изображение (lo go). Моя проблема в том, что lo go отображается плохо, когда пользователь изменяет масштабирование на значение больше 100% (125%, 150%, 175% и т. Д. c.)

. Вот мой источник код.

Основной класс:

public class Main {

public static void main(String[] args) {
    FrameServer frameServer = new FrameServer();
    frameServer.setVisible(true);
}}

Класс FrameServer:

publi c Класс FrameServer расширяет JFrame {

private JPanel contentPane;
private JPanel centerPane = new JPanel();
private JPanel southPane = new JPanel();
private JPanel rightPane = new JPanel();
private JButton btnOK = new JButton("OK");
private JTabbedPane jTabbedPane1 = new JTabbedPane();
private Tab1 tab1Page = new Tab1();
private Tab2 tab2Page = new Tab2();

public FrameServer() {
    enableEvents(AWTEvent.WINDOW_EVENT_MASK);
    jbInit();
    pack();
    centerFrame();
    this.repaint();
}

private void jbInit() {
    setTitle("Test Scaling App");
    contentPane = (JPanel) this.getContentPane();
    contentPane.setLayout(new BorderLayout());
    centerPane.setLayout(new BorderLayout());
    centerPane.add(jTabbedPane1, BorderLayout.CENTER);
    southPane.setLayout(new BorderLayout());
    rightPane.setLayout(new FlowLayout(FlowLayout.RIGHT, 5, 5));
    rightPane.add(btnOK);

    CustomStatusBar statusBar = new CustomStatusBar();
    southPane.add(statusBar, BorderLayout.CENTER);
    southPane.add(rightPane, BorderLayout.EAST);
    jTabbedPane1.addTab("Tab 1", tab1Page);
    jTabbedPane1.addTab("Tab 2", tab2Page);

    contentPane.add(centerPane, BorderLayout.CENTER);
    contentPane.add(southPane, BorderLayout.SOUTH);
}

private void centerFrame() {
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    Dimension frameSize = this.getSize();
    if (frameSize.height > screenSize.height) {
        frameSize.height = screenSize.height;
    }
    if (frameSize.width > screenSize.width) {
        frameSize.width = screenSize.width;
    }
    this.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
}

class Tab2 extends JScrollPane {
    public Tab2() {
        super(new JTextArea(10, 60));
        super.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
        super.getViewport().setPreferredSize(new Dimension(500, 300));
    }

}

class Tab1 extends JPanel {
    public Tab1() {
        contentPane = this;
        JScrollPane centerScrollPane = new JScrollPane(new JTable());
        centerScrollPane.getViewport().setBackground(Color.white);
        JPanel eastPane = new JPanel();
        eastPane.setLayout(new FlowLayout());
        JPanel topPane = new JPanel();
        topPane.setLayout(new BoxLayout(topPane, BoxLayout.Y_AXIS));
        eastPane.add(topPane, FlowLayout.LEFT);
        contentPane.setLayout(new BorderLayout());
        contentPane.add(centerScrollPane, BorderLayout.CENTER);
        contentPane.add(eastPane, BorderLayout.EAST);
    }
}

class CustomStatusBar extends JPanel {
    JLabel label0 = new JLabel("", SwingConstants.CENTER);
    JLabel label1 = new JLabel();
    JLabel label2 = new JLabel();
    JLabel label3 = new JLabel("", SwingConstants.CENTER);
    JLabel labelLogo = new JLabel();
    private static final int HEIGHT = 21;

    public CustomStatusBar() {
        setCommonFeatures(label0, 40, "Stuff 0");
        setCommonFeatures(label1, 120, "Stuff 1");
        setCommonFeatures(label2, 120, "Stuff 2");
        setCommonFeatures(label3, 90, "Stuff 3");

        labelLogo.setFont(new java.awt.Font("Dialog", 3, 12));
        labelLogo.setForeground(Color.black);
        labelLogo.setBorder(BorderFactory.createLoweredBevelBorder());
        ImageIcon image = new ImageIcon("small.png");
        labelLogo.setIcon(image);

        labelLogo.setPreferredSize(new Dimension(40, HEIGHT));
        labelLogo.setHorizontalAlignment(SwingConstants.CENTER);

        setLayout(new GridBagLayout());
        setMaximumSize(new Dimension(800, 40));
        add(label0, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 50, 0));
        add(label1, new GridBagConstraints(1, 0, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 50, 0));
        add(label2, new GridBagConstraints(2, 0, 1, 1, 1.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 50, 0));
        add(label3, new GridBagConstraints(3, 0, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 50, 0));
        add(labelLogo, new GridBagConstraints(4, 0, GridBagConstraints.REMAINDER, 1, 0.0, 0.0, GridBagConstraints.EAST, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 50, 0));

    }

    private void setCommonFeatures(JLabel label, int width, String msg) {
        label.setBackground(UIManager.getColor("ScrollBar.track"));
        label.setForeground(Color.black);
        label.setBorder(BorderFactory.createLoweredBevelBorder());
        label.setPreferredSize(new Dimension(width, HEIGHT));
        label.setText(" " + msg);
    }
}}

Small.png файл изображения: Description

При открытии с масштабированием 100% выглядит хорошо: enter image description here

Но при изменении масштаба на 175%: enter image description here начинают появляться пиксели (откройте ссылку на картинку, чтобы лучше видеть)

Теперь я заменил lo go на один с более высоким разрешением: enter image description here Теперь я поражен, так как не знаю, как заставить его поместиться в доступном для него пространстве и правильно отобразить при масштабировании. Если я переразмерю изображение из java кода , как показано здесь , оно будет отображаться правильно на 100%, но при 175% масштабировании пиксели снова станут видимыми, как при использовании файла small.png.

Как правильно решить эту проблему? Спасибо.

...