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

时间:2021-05-19

以下代码使用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;
}
}

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章