概述
import java.awt.Image;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.awt.image.CropImageFilter;
import java.awt.image.FilteredImageSource;
import java.awt.image.ImageObserver;
import java.awt.image.ImageProducer;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
public class Test8
{
int width=300;
int height=300;
int col;
int row;
File file;
ImageProducer sourse;
Test8()
{
file=new File("j.jpeg");
try {
BufferedImage bi=ImageIO.read(file);
int swidth=bi.getWidth();
int sheight=bi.getHeight();
Image suo=bi.getScaledInstance(swidth, sheight,bi.SCALE_DEFAULT);
sourse=suo.getSource();
// 得到图形像素对象
if(swidth%width==0){
col=swidth/width;
}else{
col=swidth/width+1;
}
if(sheight%height==0){
row=sheight/height;
}else{
row=sheight/height+1;
}
for(int i=0;i<row;i++){
for(int j=0;j<col;j++){
CropImageFilter cif=new CropImageFilter(j*width,i*height,width,height);
FilteredImageSource fis=new FilteredImageSource(sourse,cif);
Image image=Toolkit.getDefaultToolkit().createImage(fis);
BufferedImage bb=new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
bb.getGraphics().drawImage(image,0,0,null);
ImageIO.write(bb,"jpg",new File(String.valueOf(i)+String.valueOf(j)+".jpg"));
System.out.println(i+" "+j+"成功");
}
}
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args)
{
new Test8();
}
}
最后
以上就是专注水杯为你收集整理的java的图片的切割的全部内容,希望文章能够帮你解决java的图片的切割所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复