我使用以下方法将 ImageIcon 转换为缩略图:
ImageIcon im = new ImageIcon(url);
Image image = im.getImage().getScaledInstance(80,100,Image.SCALE_DEFAULT);
现在,当我尝试使用 html 在 JLabel 中显示图像时遇到问题。在将 ImageIcon 转换为 Image 之前,以下代码运行良好:
JLabel label = new JLabel("<html>" + im);
但是现在当我尝试使用图像做同样的事情时,它不起作用。关于如何在 JLabel 中使用 html 显示结果图像的任何想法?