使用 java image.getSubimage 裁剪图像的问题
Posted
技术标签:
【中文标题】使用 java image.getSubimage 裁剪图像的问题【英文标题】:Issues with cropping an image using java image.getSubimage 【发布时间】:2013-04-06 17:42:50 【问题描述】:我有一张尺寸为 16x6080 的图片。这是一个堆叠的图像,其中包含 16x16 部分的国家标志。我的目标是仅从该图像中提取特定国家/地区的标志并将其保存为自己的文件。这是我当前的代码
//Original Image
BufferedImage image = ImageIO.read(new File(countryImageNamePath));
System.out.println("Original Image Dimension: "+image.getWidth()+"x"+image.getHeight());
//Get the cropped image
BufferedImage out = image.getSubimage(0, 1808, 16, 16);
//Create a file to stream the out buffered image to
File croppedFile = new File(countryImagePath + countryName + ".gif");
//Write the cropped file
ImageIO.write(out, "gif", croppedFile);
产生的输出是
Original Image Dimension: 16x6080
Write File : C:\Applications\WorldCoinParser\images\country\US.gif
无论我为 Y 坐标输入什么值,我总是会得到图像的顶部,从 x=0 和 y=0 开始,宽度和高度为 16。
有人知道我在哪里搞砸了吗?
谢谢!
【问题讨论】:
我看不出你的sn-p代码有什么明显错误。考虑创建并发布sscce,它使用所有人都可以使用的在线图像。 原来这是一个尝试解析 gif 文件的 java 6(及更低版本)中的错误。升级到 Java7 解决了这个问题。 好吧,别开玩笑了?!感谢您就此问题与我们联系。考虑将其发布为您问题的答案。 由于我是这里的新手,我必须等待 8 小时才能发布答案。今天晚些时候我会更新答案。 【参考方案1】:正如@MattPerry 所说,我们只需升级到 Java 7 就可以解决这个问题。
仅出于文档目的,该错误似乎是这个http://bugs.sun.com/view_bug.do?bug_id=6795544 并影响了 Java 6。
The reason of problem here is that the optimized writing loop (utilized
direct access to image data buffer) does not take into account a data
band offset (which is non-trivial for sub-images, for example). It results
in writing image data starting from top left corner of the parent image
instead of expected top left corner of the sub-image.
We should take into account data bands offset, calculated by translated
raster instance.
我可以使用 JDK5 重现这个错误
它适用于 JDK7
【讨论】:
以上是关于使用 java image.getSubimage 裁剪图像的问题的主要内容,如果未能解决你的问题,请参考以下文章