- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我发现以下内容MRE每次执行时都会重现相同的错误:
import java.awt.Component;
import java.awt.Graphics;
import java.awt.GraphicsConfiguration;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.Image;
import java.awt.MediaTracker;
import java.awt.image.BufferedImage;
import java.util.Objects;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class IconDelegate implements Icon {
private final Icon delegated;
public IconDelegate(final Icon delegated) {
this.delegated = Objects.requireNonNull(delegated);
}
@Override
public int getIconWidth() {
return delegated.getIconWidth();
}
@Override
public int getIconHeight() {
return delegated.getIconHeight();
}
@Override
public void paintIcon(final Component c, final Graphics g, final int x, final int y) {
delegated.paintIcon(c, g, x, y);
//Some other drawing operations would be here...
}
public static void main(final String[] args) {
final ImageIcon ii = new ImageIcon();
final GraphicsEnvironment genv = GraphicsEnvironment.getLocalGraphicsEnvironment();
final GraphicsDevice gdev = genv.getDefaultScreenDevice();
final GraphicsConfiguration gcnf = gdev.getDefaultConfiguration();
final BufferedImage bimg = gcnf.createCompatibleImage(300, 400);
final Image img = bimg.getScaledInstance(150, 200, Image.SCALE_SMOOTH);
//img.getWidth(null); //Uncomment this line and the image will be drawn normally!
////img.flush(); //Uncomment this line and the image will not be drawn.
ii.setImage(img);
System.out.println(ii.getImageLoadStatus() == MediaTracker.ABORTED);
final JLabel lbl = new JLabel(new IconDelegate(ii));
final JFrame frame = new JFrame("ImageIcon delegate.");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(lbl);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}
我希望任何人都可以重现的错误是 ImageIcon
的图像永远不会绘制在显示的标签/框架中。
当我尝试调试它时,我发现图像加载状态( ImageIcon
)等于 MediaTracker.ABORTED
其委托(delegate)给 ImageObserver.ABORT
目标Component
(实现 ImageObserver
) MediaTracker
ImageIcon
的实例,这又(根据 ImageObserver
的文档)与其 imageUpdate
有关。方法。
我还注意到,如果我调用 img.getWidth(null);
就在将图像设置为 ImageIcon
之前然后图像正常绘制(即错误停止再现)并且图像加载状态不等于MediaTracker.ABORTED
不再了。阅读 ImageObserver.imageUpdate
的文档后我见过的方法指出 Image.getWidth(ImageObserver)
方法是异步?...
我还注意到,如果我调用 img.flush();
img.getWidth(null);
之后调用,然后错误重现。调用img.getWidth(null);
刷新图像后,错误将不再重现。这种模式可以重复。因此,我归结为我在 MediaTracker
的文档中找到的可能最重要的信息。 :
If no
ImageObserver
s are observing the image when the first frame has finished loading, the image might flush itself to conserve resources (seeImage.flush()
).
我必须指出,我确实关心事件的顺序。例如我需要 ImageIcon
创建为空,然后使用setImage
更新其图像。我这么说是因为,正如我注意到的,创建 ImageIcon
并在构建时为其提供图像似乎可以正确绘制图像而不是重现错误。查看 ImageIcon
的差异后的构造函数接受 Image
和 ImageIcon.setImage
我发现构造函数还从图像中请求属性“comment”,提供 Image.getProperty
方法 ImageObserver
...所以我也猜测它是异步?...
我还打过System.out.println(img.getClass());
但它最终出现在sun.*
中的一个类中包含编译代码但没有文档的包。所以我没能跟上。
我希望我的调试努力不会产生误导。
所以我的问题是:
img.getWidth(null);
之前的 setImage
)?我还发现了this相关问题,但我看到 ImageIcon
类内部使用 MediaTracker
那么重复代码有什么意义呢?原因MediaTracker
ImageIcon
的我不知道中止图像的加载(根据其加载状态)。
更现实且不太最小的 MRE 仍然会重现错误,如下所示:
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Graphics;
import java.awt.GridBagLayout;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Objects;
import javax.imageio.ImageIO;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
public class ImageThumbnail implements Icon {
private final ImageIcon delegated;
private final int w, h;
private String text;
public ImageThumbnail(final int width, final int height, final String text) {
w = width;
h = height;
this.text = Objects.toString(text).trim();
delegated = new ImageIcon();
}
@Override
public int getIconWidth() {
return w;
}
@Override
public int getIconHeight() {
return h;
}
public void setText(final String text) {
this.text = Objects.toString(text).trim();
}
//Scales the given image to fit this icon's width and height maintaining aspect ratio:
public void setImage(final BufferedImage bimg) {
final int bimgw = bimg.getWidth(),
bimgh = bimg.getHeight();
if (bimgw > bimgh)
delegated.setImage(bimg.getScaledInstance(Math.min(w, bimgw), -1, Image.SCALE_SMOOTH));
else
delegated.setImage(bimg.getScaledInstance(-1, Math.min(h, bimgh), Image.SCALE_SMOOTH));
//Alternatively you can try the following code if you don't trust the -1 arguments above:
//delegated.setImage(bimg.getScaledInstance(w, h, Image.SCALE_SMOOTH));
}
@Override
public void paintIcon(final Component c, final Graphics g, final int x, final int y) {
delegated.paintIcon(c, g, x, y);
//Other drawing operations here, like drawing a String, at the center, over the ImageIcon:
g.drawString(text, x + w / 2 - g.getFontMetrics().stringWidth(text) / 2, y + h / 2);
}
private static JPanel centered(final Component c) {
/*Creating a JPanel with GridBagLayout and a single component
in it, will layout the component in the center of the JPanel.*/
final JPanel panel = new JPanel(new GridBagLayout());
panel.add(c);
return panel;
}
public static void main(final String[] args) {
SwingUtilities.invokeLater(() -> {
final ImageThumbnail thumb = new ImageThumbnail(200, 200, "Select an image...");
final JLabel lbl = new JLabel(thumb);
final JFileChooser chooser = new JFileChooser();
chooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
chooser.setMultiSelectionEnabled(false);
final JButton load = new JButton("Load image");
load.addActionListener(e -> {
if (chooser.showOpenDialog(load) == JFileChooser.APPROVE_OPTION) {
try {
thumb.setImage(ImageIO.read(chooser.getSelectedFile()));
thumb.setText("Image-001");
lbl.setForeground(Color.GREEN.darker());
//lbl.repaint(); //Not needed, as I call 'lbl.setForeground(Color.GREEN.darker());' above...
}
catch (final IOException iox) {
iox.printStackTrace();
}
}
});
final JPanel contents = new JPanel(new BorderLayout());
contents.add(centered(lbl), BorderLayout.CENTER);
contents.add(centered(load), BorderLayout.PAGE_END);
final JFrame frame = new JFrame("Thumbnail of images.");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(contents);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
});
}
}
我知道我可以使用SwingWorker
在按钮上加载图像,这样用户就不会遇到延迟,但为了让事情更简单,我更喜欢阻止 EDT 一段时间。
最佳答案
How to prevent this error from happening without having to make arbitrary calls
使用您的原始代码,我得到了 NPE。
以下似乎有效。我现在看到一个黑色图像:
//final ImageIcon ii = new ImageIcon();
…
//ii.setImage(img);
ImageIcon ii = new ImageIcon( img );
编辑:
我尝试使用不同的方法,包括确保标签具有 ImageObserver。对我来说没有任何作用。
import java.awt.*;
import javax.swing.*;
import javax.swing.text.*;
import java.awt.image.*;
public class IconMRE extends JPanel
{
private ImageIcon icon = new ImageIcon( new BufferedImage(200, 200, BufferedImage.TYPE_INT_RGB) );
private JLabel label1 = new JLabel( icon );
public IconMRE()
{
setLayout( new BorderLayout(20, 20) );
label1 = new JLabel( icon );
add(label1, BorderLayout.LINE_START);
JLabel label2 = new JLabel();
icon.setImageObserver( label2 );
label2.setIcon( icon );
add(label2, BorderLayout.LINE_END);
JComboBox<Color>comboBox = new JComboBox<Color>();
comboBox.addItem( Color.RED );
comboBox.addItem( Color.GREEN );
comboBox.addItem( Color.BLUE );
add(comboBox, BorderLayout.PAGE_START);
comboBox.addActionListener( (e) ->
{
Color background = (Color)comboBox.getSelectedItem();
BufferedImage image = new BufferedImage(200, 200, BufferedImage.TYPE_INT_RGB);
Graphics2D g2d = image.createGraphics();
g2d.setColor( background );
g2d.fillRect(0, 0, 200, 200);
g2d.dispose();
// image.getWidth(null);
icon.setImage( image );
// label1.repaint();
});
comboBox.setSelectedIndex(2);
}
private static void createAndShowUI()
{
JFrame frame = new JFrame("IconMRE");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add( new IconMRE() );
frame.pack();
frame.setLocationRelativeTo( null );
frame.setVisible( true );
}
public static void main(String[] args)
{
EventQueue.invokeLater(new Runnable()
{
public void run()
{
createAndShowUI();
}
});
}
}
唯一有效的是在标签上强制重绘()。
关于Java Swing ImageIcon 未在 JLabel 中显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60672272/
我正在开发一个摆动程序以显示多张图片。并且可以旋转图片(每个图片都以JComponent实现)。 问题是,当图片旋转时,JComponent的边框不会改变,因此图片会被剪切。 有什么办法也可以旋转边框
我有一个 JPanel 和一个 JButton 向量,我想将每个按钮添加到面板。 我遇到的问题是我有一个代表按钮向量的变量 btns,但宏函数只是将它视为一个符号,而不是一个向量。有没有办法以某种方式
我有一个 swing 应用程序,它覆盖 javax.swing.text.Document 以将基础文档的内容限制为某些字符和文本长度。我想将我的应用程序移植到 Javafx,但我不知道此类是否有 J
我有一个带有面板的简单应用程序,我想在单击它时暂停并重新开始绘画。 object ModulusPatterns extends SimpleSwingApplication { var dela
我似乎无法在 Swing 中强制布局。我有一个 JComponent添加到 JLayeredPane我在 JComponent 上设置了边框.然后,我想立即重新绘制所有内容 - 而不是像 invali
我有一个 Swing 应用程序,我想通过将外部文件从 Windows 资源管理器拖到应用程序上来导入外部文件。我有这个基本功能工作。但是,我想将默认的拖放光标图标更改为应用程序适当的光标。当鼠标键被按
我想在我的 Scala 摆动应用程序中使用一棵树,但该组件在 API 中不可用。 是否包装了 JTree存在吗? 如果没有,你对制作有什么建议吗? 谢谢 最佳答案 即使您可以在 Scala 程序中直接
我目前正在努力使我的 Swing 应用程序看起来更好。我想在这些方面实现一些目标: 这个想法是让每个框都有一个漂亮的标题,背景类似于上图。使用基本的 Swing 组件,我能得到的最接近的东西是添加 T
这是我在 Scala 中使用 Swing 的第一次实验,并且对下面的代码有一些疑问。它所做的只是生成一个带有可改变颜色的彩色矩形的窗口。请随时回答一个或任何一个问题。 1) 我在下面使用了 Java
一个愚蠢的问题,但我真的无法让它起作用:我在 Swing 应用程序中有一些长时间运行的过程,可能需要几分钟。我想在此过程进行时向用户显示进度对话框。我还想阻止用户执行进一步的操作,例如在进程进行时按下
如何获取秋千组件的默认背景色?我的意思是JPanel的默认背景色? 最佳答案 要获取创建面板时将使用的 DEFAULT 颜色,请使用: Color color = UIManager.getColor
我想更改特定表头的背景颜色。在我的应用程序中,我必须将当前月份的标题颜色设置为红色。 我的代码在这里:: jTable1.getTableHeader(). setDefaultRe
我正在努力使在 Java3D Canvas 上显示 Java Swing 组件并与之交互成为可能。我通过将透明 JPanel 绘制到缓冲图像来显示组件,然后使用 J3DGraphics2D 在 Can
嗨 当我在 swing 中创建按钮时,它会在文本周围添加边框,从而使按钮变大一点。 现在,我确实需要那个屏幕空间,我通常做的是创建一个文本项(禁用),它创建更小的组件大小(文本周围更小的空间)并向其添
有scala.swing.BoxPanel,但它似乎没有捕获重点,因为没有与javax.swing.Box工厂方法createHorizontalStrut等效的东西、createHorizo
我的 scala swing 应用程序中有一个 BoxPanel 按钮,这对我来说很难看,因为按钮的大小各不相同。我已将其更改为 GridPanel,但随后它们也垂直填充了面板,我发现这更难看。我怎样
我刚开始学习 Scala,作为学习过程的一部分,我一直在尝试使用 Swing 编写一些简单的脚本。 这是一个非常精简的例子,它展示了我所看到的问题。 SimpleSwingApp: import sc
我刚刚开始使用 clojure 和跷跷板制作 GUI 应用程序。它只创建一个 JFrame 和几个组件。这是代码。 main 函数除了调用 start-gui 什么也不做并在返回后立即退出。 (ns
Scala 是一种很棒的语言,但不幸的是缺少库文档。如何更改组件的初始大小?我什么都没有(故意),但无论如何都希望它是一定的。我目前有 ... contents = new BoxPanel(Orie
基本设置是这样的:我有一个垂直的 JSplitPane,我希望它有一个固定大小的底部组件和一个调整大小的顶部组件,我通过调用 setResizeWeight(1.0) 来完成。在此应用程序中,有一个按
我是一名优秀的程序员,十分优秀!