`
niuzai
  • 浏览: 68163 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

【支持动画GIF图像裁剪】Java实现图像裁剪以及压缩处理工具包

阅读更多
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.Arrays;
import java.util.Iterator;

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;


/**
 * 图像裁剪以及压缩处理工具类
 *
 * 主要针对动态的GIF格式图片裁剪之后,只出现一帧动态效果的现象提供解决方案
 *
 * 提供依赖三方包解决方案(针对GIF格式数据特征一一解析,进行编码解码操作)
 * 提供基于JDK Image I/O 的解决方案(JDK探索失败)
 *
 *
 * @author Andy
 * @see       GifDecoder.class
 * @see       AnimatedGifEncoder.class
 * @see       BufferedImage.class
 * @see    ImageIO.class
 * @see       ImageReader.class
 * @since 1.0 2011.12.21
 */
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;
    }
    
    /*************************  基于三方包解决方案    *****************************/
    /**
     * 剪切图片
     *
     * @param source        待剪切图片路径
     * @param targetPath    裁剪后保存路径(默认为源路径)
     * @param x                起始横坐标
     * @param y                起始纵坐标
     * @param width            剪切宽度
     * @param height        剪切高度         
     *
     * @returns                   裁剪后保存路径(图片后缀根据图片本身类型生成)    
     * @throws IOException
     */
    public static String cutImage(String sourcePath , String targetPath , int x , int y , int width , int height) throws IOException{
        File file = new File(sourcePath);
        if(!file.exists()) {
            throw new IOException("not found the image:" + sourcePath);
        }
        if(null == targetPath || targetPath.isEmpty()) targetPath = sourcePath;
        
        String formatName = getImageFormatName(file);
        if(null == formatName) return targetPath;
        formatName = formatName.toLowerCase();
        
        // 防止图片后缀与图片本身类型不一致的情况
        String pathPrefix = getPathWithoutSuffix(targetPath);
        targetPath = pathPrefix + formatName;
        
        // GIF需要特殊处理
        if(IMAGE_FORMAT.GIF.getValue() == formatName){
            GifDecoder decoder = new GifDecoder();  
            int status = decoder.read(sourcePath);  
            if (status != GifDecoder.STATUS_OK) {  
                throw new IOException("read image " + sourcePath + " error!");  
            }

            AnimatedGifEncoder encoder = new AnimatedGifEncoder();
            encoder.start(targetPath);
            encoder.setRepeat(decoder.getLoopCount());  
            for (int i = 0; i < decoder.getFrameCount(); i ++) {  
                encoder.setDelay(decoder.getDelay(i));  
                BufferedImage childImage = decoder.getFrame(i);
                BufferedImage image = childImage.getSubimage(x, y, width, height);
                encoder.addFrame(image);  
            }  
            encoder.finish();
        }else{
            BufferedImage image = ImageIO.read(file);
            image = image.getSubimage(x, y, width, height);
            ImageIO.write(image, formatName, new File(targetPath));
        }
        
        return targetPath;
    }
    
    /**
     * 压缩图片
     * @param sourcePath       待压缩的图片路径
     * @param targetPath    压缩后图片路径(默认为初始路径)
     * @param width            压缩宽度
     * @param height        压缩高度
     *
     * @returns                   裁剪后保存路径(图片后缀根据图片本身类型生成)    
     * @throws IOException
     */
    public static String zoom(String sourcePath , String targetPath, int width , int height) throws IOException{
        File file = new File(sourcePath);
        if(!file.exists()) {
            throw new IOException("not found the image :" + sourcePath);
        }
        if(null == targetPath || targetPath.isEmpty()) targetPath = sourcePath;
        
        String formatName = getImageFormatName(file);
        if(null == formatName) return targetPath;
        formatName = formatName.toLowerCase();
        
        // 防止图片后缀与图片本身类型不一致的情况
        String pathPrefix = getPathWithoutSuffix(targetPath);
        targetPath = pathPrefix + formatName;
        
        // GIF需要特殊处理
        if(IMAGE_FORMAT.GIF.getValue() == formatName){
            GifDecoder decoder = new GifDecoder();  
            int status = decoder.read(sourcePath);  
            if (status != GifDecoder.STATUS_OK) {  
                throw new IOException("read image " + sourcePath + " error!");  
            }

            AnimatedGifEncoder encoder = new AnimatedGifEncoder();
            encoder.start(targetPath);
            encoder.setRepeat(decoder.getLoopCount());  
            for (int i = 0; i < decoder.getFrameCount(); i ++) {  
                encoder.setDelay(decoder.getDelay(i));  
                BufferedImage image = zoom(decoder.getFrame(i), width , height);
                encoder.addFrame(image);  
            }  
            encoder.finish();
        }else{
            BufferedImage image = ImageIO.read(file);
            BufferedImage zoomImage = zoom(image , width , height);
            ImageIO.write(zoomImage, formatName, new File(targetPath));
        }
        
        return targetPath;
    }
    
    /*********************** 基于JDK 解决方案     ********************************/
    
    /**
     * 读取图片
     * @param file 图片文件
     * @return     图片数据
     * @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;
    }
    
    /**
     * 根据要求处理图片
     *
     * @param images    图片数组
     * @param x            横向起始位置
     * @param y         纵向起始位置
     * @param width      宽度    
     * @param height    宽度
     * @return            处理后的图片数组
     * @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
     *
     * 图片后缀根据图片格式生成
     *
     * @param images        处理后的图片数据
     * @param formatName     图片格式
     * @param file            写入文件对象
     * @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();
        }
    }
    
    /**
     * 剪切格式图片
     *
     * 基于JDK Image I/O解决方案
     *
     * @param sourceFile        待剪切图片文件对象
     * @param destFile                  裁剪后保存文件对象
     * @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);
    }
    
    
    
    /**
     * 获取系统支持的图片格式
     */
    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 heigt            压缩图片宽度
     */
    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;
    }
    
    /**
     * 获取某个文件的前缀路径
     *
     * 不包含文件名的路径
     *
     * @param file   当前文件对象
     * @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;
    }
    
    /**
     * 获取某个文件的前缀路径
     *
     * 不包含文件名的路径
     *
     * @param path   当前文件路径
     * @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 {
        // 获取系统支持的图片格式
        //ImageCutterUtil.getOSSupportsStandardImageFormat();
        
        try {
            // 起始坐标,剪切大小
            int x = 100;
            int y = 75;
            int width = 100;
            int height = 100;
            // 参考图像大小
            int clientWidth = 300;
            int clientHeight = 250;
            
            
            File file = new File("D:\\PCM Project\\upload\\tmp\\1.gif");
            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;
            targetPath = ImageCutterUtil.cutImage(file.getPath(), targetPath, x , y , width, height);
            
            String bigTargetPath = pathPrefix  + System.currentTimeMillis() + pathSuffix;
            ImageCutterUtil.zoom(targetPath, bigTargetPath, 100, 100);
            
            String smallTargetPath = pathPrefix  + System.currentTimeMillis() + pathSuffix;
            ImageCutterUtil.zoom(targetPath, smallTargetPath, 50, 50);
            
            /************************ 基于JDK Image I/O 解决方案(JDK探索失败) *************************/
//            File destFile = new File(targetPath);
//            ImageCutterUtil.cutImage(file, destFile, x, y, width, height);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
分享到:
评论
2 楼 45088648 2013-09-24  
依赖的包有吗
1 楼 yangsz 2012-12-20  
楼主,代码怎么都不全呢?其他页面呢?

相关推荐

    gif4j-1.0.jar(gif图片处理 java jar包)

    总的来说,`gif4j-1.0.jar`是一个强大且灵活的工具,对于需要处理GIF图像的Java开发者来说,它提供了一站式的解决方案,使得在Java环境中进行GIF图像处理变得更加简单和高效。无论是在Web应用、桌面应用还是移动应用...

    Java做的GIF动画录制工具

    总之,"Java做的GIF动画录制工具"利用了Java的强大功能,结合图像处理库和GUI组件,实现了便捷的屏幕动态捕捉和动画生成。通过理解和掌握这些技术,开发者不仅可以创建自己的GIF录制工具,还可以扩展到其他领域,如...

    gif4j工具包裁切、压缩gif图片

    本文将详细介绍如何使用`gif4j`工具包进行GIF图片的裁切和压缩,以及相关的技术要点。 `gif4j`是一个Java库,专门用于处理GIF图像,包括读取、写入、编辑和转换。它提供了一系列API,使得开发者能够方便地对GIF图像...

    java图像处理 java图像处理java图像处理

    Java Advanced Imaging (JAI) API和Java Image I/O (JIO) API提供了丰富的工具和框架,使得开发者可以构建功能强大的图像处理应用,支持多种图像格式,并能进行复杂的图像处理任务。这两个API结合使用,可以满足...

    mst.zip_java 图像处理_java图像处理_图像处理_图像处理 java

    除了基本的图像处理,还可以实现更高级的功能,如图像的缩放、裁剪、旋转。例如,使用AffineTransform类可以创建一个转换矩阵,配合Graphics2D的drawRenderedImage()方法实现图像的几何变换。 在"mst.zip"中,如果...

    图像处理,JPG GIF BMP文件显示,WEB常用图像格式文件(gif,jpg,png)处理开发包 dll

    总之,"图像处理,JPG GIF BMP文件显示,WEB常用图像格式文件(gif,jpg,png)处理开发包dll" 提供了一套全面的工具,便于开发者处理和管理Web上常见的图像格式。通过熟练运用DLL,开发者可以高效地实现图像加载、显示...

    java imageProcess 图像处理程序模板

    综上所述,Java图像处理程序模板为开发者提供了便捷的工具,简化了图像处理的实现过程,无论是简单的图像操作还是复杂的图像分析,都可以在这个基础上进行扩展和实现。通过理解和熟练运用上述知识点,你可以根据需求...

    33 GIF图像显示_labwindows_imagelabWindows_gif_

    LabWindows/CVI中的ImageLab是一个强大的图像处理库,提供了丰富的函数和工具,用于读取、处理和显示各种图像格式,包括GIF。它为工程师和科学家提供了直观的图形用户界面(GUI)来分析和处理图像数据。在描述中提到...

    解决GIF动画缩放 (gif4j.jar GifDecoder)

    `gif4j.jar` 是一个Java库,专门设计用于处理GIF动画,包括缩放和压缩等功能。它内含了一个名为`GifDecoder`的类,该类能够解析GIF文件的结构,保持动画帧的信息完整。通过使用`gif4j.jar`,开发者可以避免将GIF动画...

    java源码:Jav动画图标源码(显示GIF图像).rar

    在Java中,处理GIF图像通常涉及到使用第三方库,因为Java标准库(AWT和Swing)并不直接支持GIF动画播放。一个常用的库是Java Advanced Imaging (JAI) API,但这个库可能比较庞大,对于只需要简单GIF显示的应用来说,...

    最好的 gif 处理工具

    - **Adobe Photoshop**:虽然主要为专业图像处理设计,但也能很好地处理GIF动画。 - **GIF Brewery**(仅限Mac):简洁易用,适合快速编辑和优化GIF。 - **Animaker**:在线工具,提供丰富的模板和动画元素,适合...

    Java图片处理工具ImageMagick

    Java图片处理工具ImageMagick是一个强大的跨平台图形处理库,它允许开发人员在Java应用程序中进行复杂的图像操作,包括但不限于转换、编辑、合成图像以及处理大量格式的图像文件。ImageMagick是由C语言编写的,但...

    java 图像编程实例库

    本资源包“Java图像编程实例库”提供了一系列的示例代码,旨在帮助开发者理解和应用Java中的图像处理技术。以下将详细介绍其中可能涵盖的知识点。 1. **Java AWT 和 Swing**: 这两个是Java GUI的主要框架,提供了...

    Javacv处理视频,提取成帧图片,生成gif

    - 通过读取已保存的帧图片,按照特定的时间顺序组合成 GIF 动画,可以使用 FFmpeg 的命令行工具或者 Java 接口实现。 6. **Maven 项目**: - Maven 是一个构建管理工具,用于管理 Java 项目的依赖关系。在这个...

    GIF动画编辑器

    标题中的“GIF动画编辑器”指的是用于创建、编辑和修改GIF动态图像的专业软件工具。GIF(Graphics Interchange Format)是一种流行的图像文件格式,特别适用于制作简短的无损循环动画,常用于网络表情、简单动画以及...

    GIF图像编辑器 制作GIF文件

    GIF图像编辑器是专门用于处理这种格式的工具,它允许用户进行一系列的编辑操作,包括将静态图片转换为动态GIF,以及对现有GIF进行修改。 标题中的“GIF图像编辑器 制作GIF文件”指的是使用特定的软件工具来创建和...

    java图像处理学习

    综上所述,Java的图像处理涉及到读取、显示、编辑和保存图像等一系列操作,通过`java.awt.image`和`javax.imageio`包提供的类和方法,开发者可以构建功能强大的图像处理应用程序。在实际开发中,不仅要关注功能实现...

    GIF动画制作工具.rar

    GIF(Graphics Interchange Format)是一种流行的图像格式,特别适用于创建简短的、循环播放的动画,广泛应用于互联网上的表情包、教程示例以及动态图标。 在描述中,“GIF动画制作工具.rar”暗示这可能是一个压缩...

    gif编辑工具(动态截图)

    1. **GIF的基本原理**:GIF采用无损压缩技术,支持256种颜色的调色板,使其适合色彩相对简单的图像。它通过存储一系列连续的画面来实现动态效果,每个画面之间有一定的延时,当这些画面按顺序快速播放时,就形成了...

    Java数次图像处理

    此外,还有第三方库如Java ImageIO用于读写各种图像格式,以及OpenCV这样的开源计算机视觉库,它提供了大量预定义的图像处理算法。 在描述中提到的"Gui.java"可能是一个简单的图形用户界面(GUI)类,用于展示和...

Global site tag (gtag.js) - Google Analytics