亲宝软件园·资讯

展开

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

人气:0
想了解java将图片分割为几个部分示例的相关内容吗,在本文为您仔细讲解java分割图片的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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;
}
}

加载全部内容

相关教程
猜你喜欢
用户评论