zoukankan      html  css  js  c++  java
  • 图片拆分

    图片拆分

    public class ReadPicNum1 {
    
        
    
        private static final String IMAGE_FILE_PATH = "D:\Pic\1.jpg";
    
        //横向分隔个数
    
        private static final int SEP_X_NUM = 1;
    
        //纵向分隔个数
    
        private static final int SEP_Y_NUM = 3;
    
        public static void main(String[] args) throws Exception {
    
           cutPic();
    
        }
    
        public static String cutPic() throws Exception {
    
            File file = new File(IMAGE_FILE_PATH);
    
            if (!file.exists() || !file.isFile()) {
    
                throw new RuntimeException("file not exists or un-file:" + IMAGE_FILE_PATH);
    
            }
    
            BufferedImage image = ImageIO.read(file);
    
            int totalWidth = image.getWidth();
    
            int totalHeight = image.getHeight();
    
            int width = totalWidth / SEP_X_NUM;
    
            int height = totalHeight / SEP_Y_NUM;
    
            File dirFile = new File(file.getParent(), file.getName().substring(0, file.getName().lastIndexOf(".")));
    
            if (!dirFile.exists()) {
    
                dirFile.mkdir();
    
            }
    
            for (int y = 0, j = 1; y <= totalHeight - height; y += height, j++) {
    
                for (int x = 0, i = 1; x <= totalWidth - width; x += width, i++) {
    
                    File targetFile = new File(dirFile, j + "_" + i + ".jpg");
    
                    BufferedImage targetImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
    
                    Graphics g = targetImage.getGraphics();
    
                    g.drawImage(image.getSubimage(x, y, width, height), 0, 0, null);
    
                    ImageIO.write(targetImage, "JPG", targetFile);
    
                }
    
            }
    
            return dirFile.getPath();
    
        }
    
    }

    原文: https://www.cnblogs.com/thisiswhy/p/15337601.html

  • 相关阅读:
    【Mysql 8001错误
    【mysql查询今天、昨天、7天、近30天、本月、上一月 数据】
    bootstrap-table 常用总结-1
    前端下载图片
    swiper 轮播中常用的效果,持续更新
    常用的时间函数整理
    拼接字符转的转义
    Ajax跨域请求,设置content
    JS MD5 返回二进制格式
    jqgrid three 树形结构
  • 原文地址:https://www.cnblogs.com/yrjns/p/15362115.html
Copyright © 2011-2022 走看看