java将图片分割为几个部分示例
时间:2020-10-26 22:55:26|栏目: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;
}
}
阅读排行
- 1Java Swing组件BoxLayout布局用法示例
- 2java中-jar 与nohup的对比
- 3Java邮件发送程序(可以同时发给多个地址、可以带附件)
- 4Caused by: java.lang.ClassNotFoundException: org.objectweb.asm.Type异常
- 5Java中自定义异常详解及实例代码
- 6深入理解Java中的克隆
- 7java读取excel文件的两种方法
- 8解析SpringSecurity+JWT认证流程实现
- 9spring boot里增加表单验证hibernate-validator并在freemarker模板里显示错误信息(推荐)
- 10深入解析java虚拟机