BufferedImage
逐像素扩展到0到255之间,以在JPanel上绘制图像。AffineTransform
进行缩放。小图片(<.5GB)
1.1当我增加执行缩放的比例因子时, 抛出点异常:-
java.lang.OutOfMemoryError:Java堆空间。
下面是用于缩放的代码-
scaled = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_GRAY);
Graphics2D g2d = (Graphics2D)scaled.createGraphics();
AffineTransform transformer = new AffineTransform();
transformer.scale(scaleFactor, scaleFactor);
g2d.setTransform(transformer);
BigBufferedImage image = BigBufferedImage.create(newCol,newRow, BufferedImage.TYPE_INT_ARGB);
但是无法将其传递给g2d.drawImage(image, 0, 0, this);
因为JPanel的重绘方法由于某种原因而停止。
我尝试以低分辨率加载图像,该图像读取像素并且跳/跳过了几行。但是问题是如何确定随着图像大小的变化而跳过多少像素,因此我无法决定如何确定 jump 参数。
MappedByteBuffer buffer = inChannel.map(FileChannel.MapMode.READ_ONLY,0, inChannel.size());
buffer.order(ByteOrder.LITTLE_ENDIAN);
FloatBuffer floatBuffer = buffer.asFloatBuffer();
for(int i=0,k=0;i<nrow;i=i+jump) /*jump is the value to be skipped, nrow is height of image*/
{
for(int j=0,l=0;j<ncol1;j=j+jump) //ncol is width of image
{
index=(i*ncol)+j;
oneDimArray[(k*ncolLessRes)+l] = floatBuffer.get(index);//oneDimArray is initialised to size of Low Resolution image.
l++;
}
k++;
}
问题是要确定要跳过多少列和一行,即应设置跳转的值。
table, th, td {
border: 1px solid black;
}
<table style="width:100%">
<tr>
<th>Image Size</th>
<th>Xmx</th>
<th>Xms</th>
<th>Problem</th>
</tr>
<tr>
<td>83Mb</td>
<td>512m</td>
<td>256m</td>
<td>working</td>
</tr>
<tr>
<td>83Mb</td>
<td>3096m</td>
<td>2048m</td>
<td>System hanged</td>
</tr>
<tr>
<td>3.84Gb</td>
<td>512m</td>
<td>256m</td>
<td>java.lang.OutOfMemoryError: Java heap space
</tr>
<tr>
<td>3.84Gb</td>
<td>3096m</td>
<td>512m</td>
<td>java.lang.OutOfMemoryError: Java heap space
</tr>
</table>
try(BufferedWriter bw= new BufferedWriter(new FileWriter(dtaFile,true))){
Runtime runtime=Runtime.getRuntime();
runtime.gc();
double oneMB=Math.pow(2,20);
long[] arr= Instream.range(0,(int)(10.432*long.BYTES*Math.pow(2,20))).asLongStream().toArray();
runtime.gc();
long freeMemory= runtime.freeMemory();
long totalMemory= runtime.totalMemory();
long usedMemory= totalMemory-freeMemory;
long maxMemory= runtime.maxMemory();
String fileLine= String.format(" %9.3f %9.3f %9.3f " , usedMemory/oneMb, freeMemory/oneMB, totalMemory/oneMb, maxMemory/oneMB);
bw.write();
}
获得了以下结果
Memory Allocation
这种方法失败了,因为根据我的代码使用情况,可用内存增加了。结果,对我来说决定跳下去是没有用的。
一种在加载图像之前访问可用内存量的方法,这样我就可以用它来决定跳转的值。还有其他选择来决定 jump 值的方法(即,我可以降低多少分辨率吗?)。
答案 0 :(得分:1)
OutOfMemoryError
是自我解释-您的内存不足。这就是在说您的计算机上没有物理RAM,而是JVM达到了-xmx
设置所设置的内存分配上限仔细研究ImageReader API(建议使用readTile
方法),可能只读取图像区域(例如,用于放大)
答案 1 :(得分:1)
您可以读取图像的特定部分,然后以降低的分辨率缩放图像以进行显示。
因此,在您的情况下,您可以分块读取图像(读取图像部分就像我们逐行从数据库读取数据一样)
例如:
// Define the portion / row size 50px or 100px
int rowHeight = 50;
int rowsToScan = imageHeight / rowHeight;
if(imageHeight % rowHeight > 0) rowsToScan++;
int x = 0;
int y = 0;
int w = imageWidth;
int h = rowHeight;
ArrayList<BufferedImage> scaledImagePortions = new ArrayList<>();
for(int i = 1; i <= rowsToScan; i++) {
// Read the portion of an image scale it
// and push the scaled version in lets say array
BufferedImage scalledPortionOfImage = this.getScaledPortionOfImage(img, x, y, w, h);
scaledImagePortions.add(scalledPortionOfImage);
y = (rowHeight * i);
}
// Create single image out of scaled images portions
可以帮助您获得图像Read region from very large image file in Java
的部分的线程可以帮助您缩放图像的线程(我的快速搜索结果:)) how to resize Image in java?
可以帮助您合并缓冲图像的线程:Merging two images
您始终可以调整代码段:)