通过 BufferedImage 从文件路径加载图像
2022-09-03 00:00:08
我在使用Java应用程序时遇到问题,特别是在从计算机中的某个位置加载图像时。
在这篇文章之后,我使用a和a在我的计算机上加载图像。首先,我将图像()放入源代码中,这是有效的。但是,如果我把图像放到另一个地方(比方说),Java IDE会给我一个BufferedImage
InputFileStream
pic2.jpg
C:\\ImageTest\pic2.jpg
IllegalArgumentException
return ImageIO.read(in);
这是代码:
public class MiddlePanel extends JPanel {
private BufferedImage img;
public MiddlePanel(int width) {
//img = getImage("pic2.jpg");
img = getImage("C:\\ImageTest\\pic2.jpg");
this.setPreferredSize(new Dimension(800,460));
}
public void paintComponent(Graphics g) {
// ...
}
private BufferedImage getImage(String filename) {
// This time, you can use an InputStream to load
try {
// Grab the InputStream for the image.
InputStream in = getClass().getResourceAsStream(filename);
// Then read it.
return ImageIO.read(in);
} catch (IOException e) {
System.out.println("The image was not loaded.");
//System.exit(1);
}
return null;
}
}