Java-缩放图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java-缩放图像相关的知识,希望对你有一定的参考价值。
{ int width = scale * bi.getWidth(); int height = scale * bi.getHeight(); // Cicla dando un valore medio al pixel corrispondente for(int i=0; i<width; i++) for(int j=0; j<height; j++) biScale.setRGB(i, j, bi.getRGB(i/scale, j/scale)); return biScale; }
以上是关于Java-缩放图像的主要内容,如果未能解决你的问题,请参考以下文章