java 圖片切割

工具類


package com.xudaolong.Utils;

import javax.imageio.IIOImage;
import javax.imageio.ImageIO;
import javax.imageio.ImageReader;
import javax.imageio.ImageWriter;
import javax.imageio.stream.ImageInputStream;
import javax.imageio.stream.ImageOutputStream;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.Arrays;
import java.util.Iterator;


/**
 * 圖像裁剪以及壓縮處理工具類
 * <p>
 * 主要針對(duì)動(dòng)態(tài)的GIF格式圖片裁剪之后,只出現(xiàn)一幀動(dòng)態(tài)效果的現(xiàn)象提供解決方案
 * <p>
 * 提供依賴三方包解決方案(針對(duì)GIF格式數(shù)據(jù)特征一一解析有勾,進(jìn)行編碼解碼操作)
 * 提供基于JDK Image I/O 的解決方案(JDK探索失敗)
 */
public class ImageCutterUtil {

    public enum IMAGE_FORMAT {
        BMP("bmp"),
        JPG("jpg"),
        WBMP("wbmp"),
        JPEG("jpeg"),
        PNG("png"),
        GIF("gif");

        private String value;

        IMAGE_FORMAT(String value) {
            this.value = value;
        }

        public String getValue() {
            return value;
        }

        public void setValue(String value) {
            this.value = value;
        }
    }


    /**
     * 獲取圖片格式
     *
     * @param file 圖片文件
     * @return 圖片格式
     */
    public static String getImageFormatName(File file) throws IOException {
        String formatName = null;

        ImageInputStream iis = ImageIO.createImageInputStream(file);
        Iterator<ImageReader> imageReader = ImageIO.getImageReaders(iis);
        if (imageReader.hasNext()) {
            ImageReader reader = imageReader.next();
            formatName = reader.getFormatName();
        }

        return formatName;
    }

    /*********************** 基于JDK 解決方案     ********************************/

    /**
     * 讀取圖片
     *
     * @param file 圖片文件
     * @return 圖片數(shù)據(jù)
     * @throws IOException
     */
    public static BufferedImage[] readerImage(File file) throws IOException {
        BufferedImage sourceImage = ImageIO.read(file);
        BufferedImage[] images = null;
        ImageInputStream iis = ImageIO.createImageInputStream(file);
        Iterator<ImageReader> imageReaders = ImageIO.getImageReaders(iis);
        if (imageReaders.hasNext()) {
            ImageReader reader = imageReaders.next();
            reader.setInput(iis);
            int imageNumber = reader.getNumImages(true);
            images = new BufferedImage[imageNumber];
            for (int i = 0; i < imageNumber; i++) {
                BufferedImage image = reader.read(i);
                if (sourceImage.getWidth() > image.getWidth() || sourceImage.getHeight() > image.getHeight()) {
                    image = zoom(image, sourceImage.getWidth(), sourceImage.getHeight());
                }
                images[i] = image;
            }
            reader.dispose();
            iis.close();
        }
        return images;
    }

    /**
     * 根據(jù)要求處理圖片
     *
     * @param images 圖片數(shù)組
     * @param x      橫向起始位置
     * @param y      縱向起始位置
     * @param width  寬度
     * @param height 寬度
     * @return 處理后的圖片數(shù)組
     * @throws Exception
     */
    public static BufferedImage[] processImage(BufferedImage[] images, int x, int y, int width, int height) throws Exception {
        if (null == images) {
            return images;
        }
        BufferedImage[] oldImages = images;
        images = new BufferedImage[images.length];
        for (int i = 0; i < oldImages.length; i++) {
            BufferedImage image = oldImages[i];
            images[i] = image.getSubimage(x, y, width, height);
        }
        return images;
    }

    /**
     * 寫入處理后的圖片到file
     * <p>
     * 圖片后綴根據(jù)圖片格式生成
     *
     * @param images     處理后的圖片數(shù)據(jù)
     * @param formatName 圖片格式
     * @param file       寫入文件對(duì)象
     * @throws Exception
     */
    public static void writerImage(BufferedImage[] images, String formatName, File file) throws Exception {
        Iterator<ImageWriter> imageWriters = ImageIO.getImageWritersByFormatName(formatName);
        if (imageWriters.hasNext()) {
            ImageWriter writer = imageWriters.next();
            String fileName = file.getName();
            int index = fileName.lastIndexOf(".");
            if (index > 0) {
                fileName = fileName.substring(0, index + 1) + formatName;
            }
            String pathPrefix = getFilePrefixPath(file.getPath());
            File outFile = new File(pathPrefix + fileName);
            ImageOutputStream ios = ImageIO.createImageOutputStream(outFile);
            writer.setOutput(ios);

            if (writer.canWriteSequence()) {
                writer.prepareWriteSequence(null);
                for (int i = 0; i < images.length; i++) {
                    BufferedImage childImage = images[i];
                    IIOImage image = new IIOImage(childImage, null, null);
                    writer.writeToSequence(image, null);
                }
                writer.endWriteSequence();
            } else {
                for (int i = 0; i < images.length; i++) {
                    writer.write(images[i]);
                }
            }

            writer.dispose();
            ios.close();
        }
    }

    /**
     * 剪切格式圖片
     * <p>
     * 基于JDK Image I/O解決方案
     *
     * @param sourceFile 待剪切圖片文件對(duì)象
     * @param destFile   裁剪后保存文件對(duì)象
     * @param x          剪切橫向起始位置
     * @param y          剪切縱向起始位置
     * @param width      剪切寬度
     * @param height     剪切寬度
     * @throws Exception
     */
    public static void cutImage(File sourceFile, File destFile, int x, int y, int width, int height) throws Exception {
        // 讀取圖片信息
        BufferedImage[] images = readerImage(sourceFile);
        // 處理圖片
        images = processImage(images, x, y, width, height);
        // 獲取文件后綴
        String formatName = getImageFormatName(sourceFile);

        destFile = new File(getPathWithoutSuffix(destFile.getPath()) + formatName);

        // 寫入處理后的圖片到文件
        writerImage(images, formatName, destFile);
    }


    /**
     * 獲取系統(tǒng)支持的圖片格式
     */
    public static void getOSSupportsStandardImageFormat() {
        String[] readerFormatName = ImageIO.getReaderFormatNames();
        String[] readerSuffixName = ImageIO.getReaderFileSuffixes();
        String[] readerMIMEType = ImageIO.getReaderMIMETypes();
        System.out.println("========================= OS supports reader ========================");
        System.out.println("OS supports reader format name :  " + Arrays.asList(readerFormatName));
        System.out.println("OS supports reader suffix name :  " + Arrays.asList(readerSuffixName));
        System.out.println("OS supports reader MIME type :  " + Arrays.asList(readerMIMEType));

        String[] writerFormatName = ImageIO.getWriterFormatNames();
        String[] writerSuffixName = ImageIO.getWriterFileSuffixes();
        String[] writerMIMEType = ImageIO.getWriterMIMETypes();

        System.out.println("========================= OS supports writer ========================");
        System.out.println("OS supports writer format name :  " + Arrays.asList(writerFormatName));
        System.out.println("OS supports writer suffix name :  " + Arrays.asList(writerSuffixName));
        System.out.println("OS supports writer MIME type :  " + Arrays.asList(writerMIMEType));
    }

    /**
     * 壓縮圖片
     *
     * @param sourceImage 待壓縮圖片
     * @param width       壓縮圖片高度
     * @param height      壓縮圖片寬度
     */
    private static BufferedImage zoom(BufferedImage sourceImage, int width, int height) {
        BufferedImage zoomImage = new BufferedImage(width, height, sourceImage.getType());
        Image image = sourceImage.getScaledInstance(width, height, Image.SCALE_SMOOTH);
        Graphics gc = zoomImage.getGraphics();
        gc.setColor(Color.WHITE);
        gc.drawImage(image, 0, 0, null);
        return zoomImage;
    }

    /**
     * 獲取某個(gè)文件的前綴路徑
     * <p>
     * 不包含文件名的路徑
     *
     * @param file 當(dāng)前文件對(duì)象
     * @return
     * @throws IOException
     */
    public static String getFilePrefixPath(File file) throws IOException {
        String path = null;
        if (!file.exists()) {
            throw new IOException("not found the file !");
        }
        String fileName = file.getName();
        path = file.getPath().replace(fileName, "");
        return path;
    }

    /**
     * 獲取某個(gè)文件的前綴路徑
     * <p>
     * 不包含文件名的路徑
     *
     * @param path 當(dāng)前文件路徑
     * @return 不包含文件名的路徑
     * @throws Exception
     */
    public static String getFilePrefixPath(String path) throws Exception {
        if (null == path || path.isEmpty()) throw new Exception("文件路徑為空砰蠢!");
        int index = path.lastIndexOf(File.separator);
        if (index > 0) {
            path = path.substring(0, index + 1);
        }
        return path;
    }

    /**
     * 獲取不包含后綴的文件路徑
     *
     * @param src
     * @return
     */
    public static String getPathWithoutSuffix(String src) {
        String path = src;
        int index = path.lastIndexOf(".");
        if (index > 0) {
            path = path.substring(0, index + 1);
        }
        return path;
    }

    /**
     * 獲取文件名
     *
     * @param filePath 文件路徑
     * @return 文件名
     * @throws IOException
     */
    public static String getFileName(String filePath) throws IOException {
        File file = new File(filePath);
        if (!file.exists()) {
            throw new IOException("not found the file !");
        }
        return file.getName();
    }


    /**
     * @param args
     * @throws Exception
     */
    public static void main(String[] args) throws Exception {
        // 獲取系統(tǒng)支持的圖片格式
//        ImageCutterUtil.getOSSupportsStandardImageFormat();

        try {
            // 起始坐標(biāo),剪切大小
            int x = 14;
            int y = 24;
            int width = 62;
            int height = 62;

            // 參考圖像大小
            int clientWidth = 88;
            int clientHeight = 88;


            File file = new File("/Users/mac/IdeaProjects/QRdemo/resources/src/com/xudaolong/QR/TestQR/QR.jpg");


            BufferedImage image = ImageIO.read(file);

            double destWidth = image.getWidth();
            double destHeight = image.getHeight();

            if (destWidth < width || destHeight < height)
                throw new Exception("源圖大小小于截取圖片大小!");

            double widthRatio = destWidth / clientWidth;
            double heightRatio = destHeight / clientHeight;

            x = Double.valueOf(x * widthRatio).intValue();
            y = Double.valueOf(y * heightRatio).intValue();
            width = Double.valueOf(width * widthRatio).intValue();
            height = Double.valueOf(height * heightRatio).intValue();

            System.out.println("裁剪大小  x:" + x + ",y:" + y + ",width:" + width + ",height:" + height);

            String formatName = getImageFormatName(file);
            String pathSuffix = "." + formatName;
            String pathPrefix = getFilePrefixPath(file);
            String targetPath = pathPrefix + System.currentTimeMillis() + pathSuffix;

            File destFile = new File(targetPath);

            ImageCutterUtil.cutImage(file, destFile, x, y, width, height);

        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}


單方面測(cè)試


   public void cutQR(String sourcePath) {

        try {
            File file = new File(sourcePath);

            BufferedImage image = ImageIO.read(file);

            // 起始坐標(biāo)谈截,剪切大小
            int x = 14;
            int y = 25;
            int width = 62;
            int height = 62;
            // 參考圖像大小
            int clientWidth = 88;
            int clientHeight = 88;

            double destWidth = image.getWidth();
            double destHeight = image.getHeight();

            if (destWidth < width || destHeight < height)
                throw new Exception("源圖大小小于截取圖片大小!");


            double widthRatio = destWidth / clientWidth;
            double heightRatio = destHeight / clientHeight;

            //修改一下單位
            x = Double.valueOf(x * widthRatio).intValue();
            y = Double.valueOf(y * heightRatio).intValue();
            width = Double.valueOf(width * widthRatio).intValue();
            height = Double.valueOf(height * heightRatio).intValue();

            System.out.println("裁剪大小  x:" + x + ",y:" + y + ",width:" + width + ",height:" + height);

            //獲取指定的名字
//            String formatName = getImageFormatName(file);
//            String pathSuffix = "." + formatName;
//            String pathPrefix = getFilePrefixPath(file);
//            String targetPath = pathPrefix + System.currentTimeMillis() + pathSuffix;

            //最后一步進(jìn)行裁剪到指定的名字

            File destFile = new File(sourcePath);

            ImageCutterUtil.cutImage(file, destFile, x, y, width, height);

        } catch (Exception e) {
            e.printStackTrace();
        }

    }

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子簸喂,更是在濱河造成了極大的恐慌毙死,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,978評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件喻鳄,死亡現(xiàn)場(chǎng)離奇詭異扼倘,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)除呵,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門再菊,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人竿奏,你說我怎么就攤上這事袄简。” “怎么了泛啸?”我有些...
    開封第一講書人閱讀 156,623評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵绿语,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我候址,道長(zhǎng)吕粹,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,324評(píng)論 1 282
  • 正文 為了忘掉前任岗仑,我火速辦了婚禮匹耕,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘荠雕。我一直安慰自己稳其,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,390評(píng)論 5 384
  • 文/花漫 我一把揭開白布炸卑。 她就那樣靜靜地躺著既鞠,像睡著了一般。 火紅的嫁衣襯著肌膚如雪盖文。 梳的紋絲不亂的頭發(fā)上嘱蛋,一...
    開封第一講書人閱讀 49,741評(píng)論 1 289
  • 那天,我揣著相機(jī)與錄音五续,去河邊找鬼洒敏。 笑死,一個(gè)胖子當(dāng)著我的面吹牛疙驾,可吹牛的內(nèi)容都是我干的凶伙。 我是一名探鬼主播,決...
    沈念sama閱讀 38,892評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼它碎,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼镊靴!你這毒婦竟也來了铣卡?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,655評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤偏竟,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后敞峭,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體踊谋,經(jīng)...
    沈念sama閱讀 44,104評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年旋讹,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了殖蚕。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,569評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡沉迹,死狀恐怖睦疫,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情鞭呕,我是刑警寧澤蛤育,帶...
    沈念sama閱讀 34,254評(píng)論 4 328
  • 正文 年R本政府宣布,位于F島的核電站葫松,受9級(jí)特大地震影響瓦糕,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜腋么,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,834評(píng)論 3 312
  • 文/蒙蒙 一咕娄、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧珊擂,春花似錦圣勒、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至扳剿,卻和暖如春旁趟,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背庇绽。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評(píng)論 1 264
  • 我被黑心中介騙來泰國(guó)打工锡搜, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人瞧掺。 一個(gè)月前我還...
    沈念sama閱讀 46,260評(píng)論 2 360
  • 正文 我出身青樓耕餐,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親辟狈。 傳聞我的和親對(duì)象是個(gè)殘疾皇子肠缔,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,446評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容

  • 1****夏跷、問:你在測(cè)試中發(fā)現(xiàn)了一個(gè)bug****,但是開發(fā)經(jīng)理認(rèn)為這不是一個(gè)bug****明未,你應(yīng)該怎樣解決槽华?首先...
    一箭閱讀 9,069評(píng)論 1 205
  • 文章來自:http://blog.csdn.net/mj813/article/details/52451355 ...
    好大一只鵬閱讀 9,189評(píng)論 2 126
  • 1.測(cè)試與軟件模型 軟件開發(fā)生命周期模型指的是軟件開發(fā)全過程、活動(dòng)和任務(wù)的結(jié)構(gòu)性框架趟妥。軟件項(xiàng)目的開發(fā)包括:需求猫态、設(shè)...
    Mr希靈閱讀 21,949評(píng)論 7 278
  • Requests: 讓 HTTP 服務(wù)人類 這是requests 的官方文檔,有中文披摄。 Python3.5.2官方...
    遺落星痕閱讀 187評(píng)論 0 0
  • ------English20160711------1亲雪、polymorphism英 [,p?l?'m??f?z(...
    2016AF閱讀 446評(píng)論 0 0