唯一的区别是有两种不同的作物位置。 问题是为什么我得到这个错误??
方法调用
CropRealOriginalImage1 orderName = new CropRealOriginalImage1();
FourAreaCropAgain1 orderNameFirst=new FourAreaCropAgain1();
orderNameFirst.orderNameFirst();
Decode decode= new Decode();
decode.inputImage("C:/TEMP/Image/Embed Image/Four Area/OrderFirst.png");
if(decode.s.equals("")){
System.out.println("OderFirst=null");
}else{
//put b into txt file
System.out.println("decode.s" +decode.s);
}
工作:
public void orderNameFirst(){
ImageIcon icon = new ImageIcon("C:/TEMP/Image/Embed Image/Really Original.png");
image = icon.getImage();
image = createImage(new FilteredImageSource(image.getSource(),
new CropImageFilter(icon.getIconWidth()-290, 0, 10, 33)));
//new CropImageFilter(icon.getIconWidth()/2, icon.getIconHeight()/2, icon.getIconWidth()/2, icon.getIconHeight()/2)));
BufferedImage bufferedImage = new BufferedImage(icon.getIconWidth(),
icon.getIconHeight(), BufferedImage.TYPE_INT_RGB);
Graphics graphics = bufferedImage.getGraphics();
graphics.drawImage(icon.getImage(), 0, 0, null);
Graphics2D g = bufferedImage.createGraphics();
g.setColor(Color.WHITE);
g.fillRect(icon.getIconWidth()-290, 0, 10, 33);
}
不起作用
public void orderNameFirst(){
ImageIcon icon = new ImageIcon("C:/TEMP/Image/Embed Image/Really Original.png");
image = icon.getImage();
image = createImage(new FilteredImageSource(image.getSource(),
new CropImageFilter(3*icon.getIconWidth()/8, 0, icon.getIconWidth()/8, icon.getIconHeight()/2)));
//new CropImageFilter(icon.getIconWidth()/2, icon.getIconHeight()/2, icon.getIconWidth()/2, icon.getIconHeight()/2)));
BufferedImage bufferedImage = new BufferedImage(icon.getIconWidth(),
icon.getIconHeight(), BufferedImage.TYPE_INT_RGB);
Graphics graphics = bufferedImage.getGraphics();
graphics.drawImage(icon.getImage(), 0, 0, null);
Graphics2D g = bufferedImage.createGraphics();
g.setColor(Color.WHITE);
g.fillRect(3*icon.getIconWidth()/8, 0, icon.getIconWidth()/8, icon.getIconHeight()/2);
}
错误:解码integerLength:2147483647 线程“Thread”中的异常java.lang.OutOfMemoryError:请求的数组大小超过VM限制
答案 0 :(得分:2)
免责声明:这可能不是您想要的答案,但这就是您所要求的。
问题是为什么我会收到这个错误?
您收到错误:
Exception in thread "Thread" java.lang.OutOfMemoryError: Requested array size exceeds VM limit
...因为您正在尝试创建一个大于Java VMs堆中最大连续内存块的数组。这可能是因为您尝试创建一个巨大的图像,或者可能是您尝试分配阵列时,您的VM通常只在资源上运行不足。
这很可能发生在BufferedImage
构造函数中。
但很难说,因为你没有发布完整的堆栈跟踪,也没有关于图像大小的相关信息或者在运行时在程序中实际传递的其他值。
修复程序取决于内存不足的原因。
例如,我可以从您的代码中看到您从未在正在创建的dispose
个实例上调用Graphics/Graphics2D
。这可能会导致资源随时间泄漏(只是一个例子,可能还有其他的)。
如果你的内存立即耗尽,因为图像很大,你需要增加最大堆大小。这通常是通过将-Xmx<value>
参数传递到java
命令行(其中<value>
是新的最大大小,如256m
,1G
或类似命令来完成的)。