【发布时间】:2020-05-01 15:50:02
【问题描述】:
我在我的应用程序中截取了一张表格,我想在应用程序的教程部分显示该片段。我无法让它在不模糊的情况下显示。我不知道这是什么原因造成的。当我在 Windows 照片查看器中打开它时,图片很好,但在应用程序中它是模糊的。
我所有的图片都存储在我的项目中一个名为图标的包中,它们不是图片的链接,而是实际的副本。
这是我的代码的最小工作示例。如果有任何调整图像大小的东西,使它失去质量,我该如何防止这种情况发生?
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import java.awt.GridBagLayout;
import java.awt.GridBagConstraints;
import java.awt.Color;
import java.awt.Component;
import javax.swing.Box;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
import java.awt.Insets;
import java.awt.Font;
import java.awt.Dimension;
import javax.swing.JTextArea;
@SuppressWarnings("serial")
public class example extends JFrame {
private JPanel contentPane;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
example frame = new example();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public example() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 558, 373);
contentPane = new JPanel();
contentPane.setBackground(Color.WHITE);
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
GridBagLayout gbl_contentPane = new GridBagLayout();
gbl_contentPane.columnWidths = new int[]{0, 0};
gbl_contentPane.rowHeights = new int[]{0, 0};
gbl_contentPane.columnWeights = new double[]{1.0, Double.MIN_VALUE};
gbl_contentPane.rowWeights = new double[]{1.0, Double.MIN_VALUE};
contentPane.setLayout(gbl_contentPane);
JPanel panel = new JPanel();
panel.setBackground(Color.WHITE);
GridBagConstraints gbc_panel = new GridBagConstraints();
gbc_panel.fill = GridBagConstraints.BOTH;
gbc_panel.gridx = 0;
gbc_panel.gridy = 0;
contentPane.add(panel, gbc_panel);
GridBagLayout gbl_panel = new GridBagLayout();
gbl_panel.columnWidths = new int[]{0, 0, 0};
gbl_panel.rowHeights = new int[]{0, 0, 0, 100, 0};
gbl_panel.columnWeights = new double[]{0.0, 1.0, Double.MIN_VALUE};
gbl_panel.rowWeights = new double[]{0.0, 0.0, 0.0, 0.0,
Double.MIN_VALUE};
panel.setLayout(gbl_panel);
JLabel lblWordsGoHere = new JLabel("Words go here");
lblWordsGoHere.setFont(new Font("Tahoma", Font.PLAIN, 18));
GridBagConstraints gbc_lblWordsGoHere = new GridBagConstraints();
gbc_lblWordsGoHere.insets = new Insets(0, 0, 5, 0);
gbc_lblWordsGoHere.gridx = 1;
gbc_lblWordsGoHere.gridy = 0;
panel.add(lblWordsGoHere, gbc_lblWordsGoHere);
Component horizontalStrut = Box.createHorizontalStrut(20);
horizontalStrut.setPreferredSize(new Dimension(20, 20));
GridBagConstraints gbc_horizontalStrut = new GridBagConstraints();
gbc_horizontalStrut.insets = new Insets(0, 0, 5, 5);
gbc_horizontalStrut.gridx = 0;
gbc_horizontalStrut.gridy = 1;
panel.add(horizontalStrut, gbc_horizontalStrut);
JLabel lblNewLabel = new JLabel("More words here...");
lblNewLabel.setFont(new Font("Tahoma", Font.PLAIN, 14));
GridBagConstraints gbc_lblNewLabel = new GridBagConstraints();
gbc_lblNewLabel.insets = new Insets(0, 0, 5, 0);
gbc_lblNewLabel.anchor = GridBagConstraints.WEST;
gbc_lblNewLabel.gridx = 1;
gbc_lblNewLabel.gridy = 1;
panel.add(lblNewLabel, gbc_lblNewLabel);
JLabel lblNewLabel_1 = new JLabel(new ImageIcon(example.class.getResource("/icons/Step3.png")));
GridBagConstraints gbc_lblNewLabel_1 = new GridBagConstraints();
gbc_lblNewLabel_1.insets = new Insets(0, 0, 5, 0);
gbc_lblNewLabel_1.gridx = 1;
gbc_lblNewLabel_1.gridy = 2;
panel.add(lblNewLabel_1, gbc_lblNewLabel_1);
JTextArea txtrLotsOfDescriptive = new JTextArea();
txtrLotsOfDescriptive.setFont(new Font("Monospaced", Font.PLAIN, 14));
txtrLotsOfDescriptive.setText("lots of descriptive words....");
GridBagConstraints gbc_txtrLotsOfDescriptive = new GridBagConstraints();
gbc_txtrLotsOfDescriptive.fill = GridBagConstraints.BOTH;
gbc_txtrLotsOfDescriptive.gridx = 1;
gbc_txtrLotsOfDescriptive.gridy = 3;
panel.add(txtrLotsOfDescriptive, gbc_txtrLotsOfDescriptive);
}
}
这是图像,来自应用程序的原始片段,您可以说它看起来不错,这就是我希望它在应用程序中的外观和显示方式。
现在这里是通过教程屏幕中的代码显示的图像的片段。它没有那么简洁,实际上看起来比显示的要差一些,因为剪辑放大了它。该片段使此处更易于阅读,但您仍然可以看到它看起来不像另一张图片。它失去了一些质量,我不知道为什么或该怎么做。任何帮助和建议都会大有帮助!谢谢!
【问题讨论】:
-
最好创建并发布一个有效的minimal reproducible example,这样我们就可以准确地看到您是如何显示图像的。例如,如果您在 JLabel 中将图像显示为 ImageIcon 并且人为地更改标签的大小,例如通过在标签上调用
setSize(...)或setBounds(...),这将更改图像大小并降低其质量。 -
@HovercraftFullOfEels 我不知道更改标签会影响图片。我添加了代码来显示布局管理器。除了显示的内容外,标签上没有其他内容。我希望这已经足够了。
-
恐怕您还没有发布有效的minimal reproducible example,因为没有人可以编译/运行/重现您的问题。在您发布有效问题之前,该问题与其他问题重复。
-
@HovercraftFullOfEels,你人为地改变标签的大小,比如在标签上调用 setSize(...) 或 setBounds(...),这将改变图像大小并降低其质量。 - JLabel 始终以实际大小绘制图标。
-
@Kyle,例如,您可能正在 Windows 10 上使用缩放。这可能会导致问题。也许这个问题是相关的:stackoverflow.com/questions/60838951/java-gui-scaling-problems
标签: java image swing imageicon