如何读取大缓冲图像

发布于 2024-11-13 22:00:33 字数 412 浏览 3 评论 0原文

我正在将 100 MB 的图片读入我的应用程序。它在 Eclipse 中工作正常,但当我将项目导出到 JAR 时就不行了。然后,我得到“无法读取输入文件!”

由于我需要对其进行编辑,因此我使用了 BufferedImage。

private String str = "images/1.png";
BufferedImage imageMap;
//in constructor
imageMap = ImageIO.read(new File(str));

我已经尝试过此操作,但项目图像未在 Eclipse 中加载:

imageMap = ImageIO.read(this.getClass().getClassLoader().getResource(str));

I am reading a 100 MB picture into my app. It works fine inside Eclipse, but not when I export project to a JAR. Then, I get "Can't read input file!"

Since I need to edit it, I used BufferedImage.

private String str = "images/1.png";
BufferedImage imageMap;
//in constructor
imageMap = ImageIO.read(new File(str));

I have tried this, but the project image does not load inside Eclipse:

imageMap = ImageIO.read(this.getClass().getClassLoader().getResource(str));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葬花如无物 2024-11-20 22:00:33

如果图像是从文件系统加载的,请检查您的工作目录。然后您会看到相对路径 "images/1.png" 是否有效。或者你直接检查你的png的路径

System.out.println(new File("."));
File f = new File("images/1.png");
System.out.println(f.getAbsolutePath());

Check you working directory if the image is loaded from the file system. Then you see if your relative path "images/1.png" is valid. Or you directly check the path of your png

System.out.println(new File("."));
File f = new File("images/1.png");
System.out.println(f.getAbsolutePath());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文