我有一个JFrame,它有4个不同的面板。下图中右侧的黑框是图像面板。我正在尝试编写一个类,允许我将图像加载到程序中任何其他类的任何Panel中。
LoadImage.java
package sf;
import java.awt.*;
import java.awt.image.*;
import javax.swing.ImageIcon;
public class LoadImage extends Component {
BufferedImage img;
public void paint(Graphics g) {
g.drawImage(img, 0, 0, null);
}
public LoadImage(String filename) {
try {
System.out.println(filename);
img = new ImgUtils().scaleImage(380, 360, filename);
} catch (Exception e) {
System.out.println("File not found");
}
}
class ImgUtils {
public BufferedImage scaleImage(int WIDTH, int HEIGHT, String filename) {
BufferedImage bi = null;
try {
ImageIcon ii = new ImageIcon(filename);
bi = new BufferedImage(WIDTH, HEIGHT, BufferedImage.TYPE_INT_RGB);
Graphics2D g2d = (Graphics2D) bi.createGraphics();
g2d.addRenderingHints(new RenderingHints(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_QUALITY));
g2d.drawImage(ii.getImage(), 0, 0, WIDTH, HEIGHT, null);
} catch (Exception e) {
e.printStackTrace();
return null;
}
return bi;
}
}
}
我用来加载其他类中Image的代码。
private void getProductImage() {
try {
String path = getClass().getProtectionDomain().getCodeSource().getLocation().getPath();
String decodedPath = URLDecoder.decode(path, "UTF-8");
String newPath = decodedPath.replace("build/classes/", "src/productImages/");
productImagePanel.add(new LoadImage(newPath + imageCode + ".jpg"));
revalidate();
pack();
} catch (Exception e) {
e.printStackTrace();
}
}
'imageCode'是窗口可见后从数据库中检索的代码,我已多次检查图像路径。
LoadImage.java自行工作并加载图像,如果添加了'main runnable'方法,但我似乎无法在我想要的面板中显示图像。请告知如何解决我的问题,感谢任何帮助!
答案 0 :(得分:4)
您的问题很可能是您正在尝试将图像作为组件加载到JPanel。问题包括:
我建议:
另外,您应该处理您创建的任何Graphics和Graphics2D对象(但不是由JVM提供给您的任何对象)。这意味着当您在ImageUtilities中使用g2d绘图时,请将其丢弃。