服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - JAVA教程 - java将图片分割为几个部分示例

java将图片分割为几个部分示例

2019-11-18 14:35java教程网 JAVA教程

这篇文章主要介绍了java将图片分割为几个部分示例,需要的朋友可以参考下

以下代码使用java图片分割为几个部分,大家参考使用吧
 

复制代码代码如下:

public class SegmentationImage{

   public static Icon Segmentation(String imagename,int Width,int Height,int height,int width) throws Exception{
  // 准备分割图片

     BufferedImage img1=ImageIO.read(new File(imagename));
     int half_w=img1.getWidth();
   int rgb[]=new int[half_w*img1.getHeight()];
   img1.getRGB(0, 0, half_w, img1.getHeight(), rgb, 0, half_w);
   BufferedImage img_half=new BufferedImage(half_w, img1.getHeight(), BufferedImage.TYPE_INT_ARGB);
   img_half.setRGB(Width,Height,height,img1.getHeight(), rgb,width,half_w);
   Icon returnIcon = new ImageIcon(img_half);
      return returnIcon;
}
}
 

延伸 · 阅读

精彩推荐