`
张洪财
  • 浏览: 275971 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

图片压缩

    博客分类:
  • java
SUN 
阅读更多

package zhc.tool.util;

import java.awt.Color;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

import javax.imageio.ImageIO;

import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGEncodeParam;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
/**
 * 图片压缩类
 * @author hongcai
 *
 */
public class PicCompression {
    private int wideth; // 指定图片的宽度
    private int height;
    private String t = null;

    public void setT(String t) {
        this.t = t;
    }

    public void setWideth(int wideth) {
        // wideth=320;
        this.wideth = wideth;
    }

    public int getWideth() {
        return this.wideth;
    }

    public void setHeight(int height) {
        // height=240;
        this.height = height;
    }
/**
 * 
 *  如果图片的宽度大于wideth ,则按wideth的宽度缩下图片返回图片的改变后的高度
 * @param w 实际图片宽
 * @param h 实际图片高
 * @return 改变后的图片的高度
 */
    public int getHeight(int w, int h) // former images size
    {
        // int hhh;
        if (w > wideth) {
            float ww;
            ww = (float) w / (float) wideth;
            float hh = h / ww;
            return (int) hh;
        } else {
            this.setWideth(w);
            return h;
        }

    }

    public void proce(String fpath) throws Exception {
        File _file = new File(fpath);
        Image src = javax.imageio.ImageIO.read(_file);
        int wideth = src.getWidth(null); // 返回图片的宽度
        int height = src.getHeight(null); // 返回图片的高度
       
        int h = this.getHeight(wideth, height); // 根据给定的宽度,改变高度 。达到等比缩放
        BufferedImage tag = new BufferedImage(this.getWideth(), h,
                BufferedImage.TYPE_INT_RGB);  // this.getWideth() 这个大小值得商榷。应判断下图片小于wideth的情况
        Graphics g = tag.getGraphics();
        g.drawImage(src, 0, 0, this.getWideth(), h, null);
        if (t != null) {
            g.setColor(new Color(242, 242, 242));
            g.fillRect(this.getWideth() - 120, h - 18, 120, 18);
            g.setColor(new Color(180, 180, 180));
            g.drawRect(this.getWideth() - 120, h - 18, 119, 17);
            g.setColor(new Color(255, 102, 0));
            g.drawString(t, this.getWideth() - 100, h - 5);
        }
        FileOutputStream out = new FileOutputStream(fpath);
        JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
        encoder.encode(tag);
        out.close();
    }

    /**
    * 压缩图片方法
    *
    * @param oldFile
    *            将要压缩的图片
    * @param width
    *            压缩宽
    * @param height
    *            压缩长
    * @param quality
    *            压缩清晰度 <b>建议为1.0</b>
    * @param smallIcon
    *            压缩图片后,添加的扩展名
    * @return
    */
    public String proce(String oldFile, int width, int height, float quality,
            String smallIcon) {
        if (oldFile == null) {
            return null;
        }
        String newImage = null;
        try {
            File file = new File(oldFile);
            if(!file.exists()) //文件不存在时
                return null;
            /** 对服务器上的临时文件进行处理 */
            Image srcFile = ImageIO.read(file);
            // 为等比缩放计算输出的图片宽度及高度
            int w=srcFile.getWidth(null); // 获得实际文件的宽度
            int h=srcFile.getHeight(null); // 获得实际文件的高
          
          
            int i[]=calcWH(w,h,width,height); // 返回处理后的宽高
            w=i[0];
            h=i[1];
            /** 宽,高设定 */
            BufferedImage tag = new BufferedImage(w, h,
                    BufferedImage.TYPE_INT_RGB);
            tag.getGraphics().drawImage(srcFile, 0, 0, w, h, null);
            String filePrex = oldFile.substring(0, oldFile.indexOf('.'));
            /** 压缩后的文件名 */
            // newImage =smallIcon + filePrex
            // +oldFile.substring(filePrex.length());
            newImage = filePrex + smallIcon
                    + oldFile.substring(filePrex.length());
            // newImage = smallIcon;
            /** 压缩之后临时存放位置 */
            FileOutputStream out = new FileOutputStream(newImage);

            JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
            JPEGEncodeParam jep = JPEGCodec.getDefaultJPEGEncodeParam(tag);
            /** 压缩质量 */
            jep.setQuality(quality, true);
            encoder.encode(tag, jep);

            out.close();
            srcFile.flush();

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return newImage;
    }
    /**
     * 压缩图片方法
     *
     * @param oldFile
     *            将要压缩的图片
     * @param width 480
     *            压缩宽
     *
     * @param quality
     *            压缩清晰度 <b>建议为1.0</b>
     * @param smallIcon
     *            压缩图片后,添加的扩展名
     * @return
     */
     public String proce(String oldFile, int width, float quality,
             String smallIcon) {
         if (oldFile == null) {
             return null;
         }
         String newImage = null;
         try {
             File file = new File(oldFile);
             if(!file.exists()) //文件不存在时
                 return null;
             /** 对服务器上的临时文件进行处理 */
             BufferedImage srcFile = ImageIO.read(file);
           //  BufferedImage bufferedFile = ImageIO.read(file);
             // 为等比缩放计算输出的图片宽度及高度
             int w=srcFile.getWidth(null); // 获得实际文件的宽度
             int h=srcFile.getHeight(null); // 获得实际文件的高
 
             if (w > width) { // 根据限制宽度得到高度
                 float ww;
                 ww = (float) w / (float) width;
                 float hh = h / ww;
                 h=(int) hh;
                 w=width;
             }
             /** 宽,高设定 */
            
//             BufferedImage tag = new BufferedImage(w, h,
//                     BufferedImage.TYPE_INT_RGB); // 指定类型
             BufferedImage tag = new BufferedImage(w, h,
               srcFile.getType()); // 用员图片的类型
             tag.getGraphics().drawImage(srcFile, 0, 0, w, h, null);
             String filePrex = oldFile.substring(0, oldFile.indexOf('.'));
             /** 压缩后的文件名 */
             // newImage =smallIcon + filePrex
             // +oldFile.substring(filePrex.length());
             newImage = filePrex + smallIcon
                     + oldFile.substring(filePrex.length());
             // newImage = smallIcon;
             /** 压缩之后临时存放位置 */
             FileOutputStream out = new FileOutputStream(newImage);

             JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
             JPEGEncodeParam jep = JPEGCodec.getDefaultJPEGEncodeParam(tag);
              // 压缩质量
              // quality取值在 1.0 到 0.0 之间Some guidelines: 0.75 high quality
              //  0.5  medium quality
              //  0.25 low quality
             jep.setQuality(quality, true);
             encoder.encode(tag, jep);

             out.close();
             srcFile.flush();

         } catch (FileNotFoundException e) {
             e.printStackTrace();
         } catch (IOException e) {
             e.printStackTrace();
         }
         return newImage;
     }
  /**
   * 为等比缩放计算输出的图片宽度及高度
   * @param infactW 实际文件的宽
   * @param infactH 实际文件的高
   * @param w 限制的宽
   * @param h 限制的高
   * @return
   */ 
private int[] calcWH(double infactW,double infactH,double w,double h){
 
 int  whInt[]=new int[2]; // 存放长、宽
    double rate1 = infactW / w + 0.1;
    double rate2 = infactH / h + 0.1;
    double rate = rate1 > rate2 ? rate1 : rate2;
    int new_w = (int) (infactW / rate);
    int new_h = (int) (infactH / rate);
    whInt[0]=new_w;
    whInt[1]=new_h;
    return whInt;
}
    //
    public static void main(String str[]) {
        PicCompression ps = new PicCompression();
        try {

         System.out.println(ps.proce("G:\\pic\\IMG_0660.JPG", 480, 0.75f, "7"));
            System.out.print("成功哦");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

分享到:
评论
1 楼 wencan83 2011-07-18  
fgdsfgf

相关推荐

    C# core 图片压缩 图片无损压缩 图片无损剪切 无损图片压缩 无损图片剪切

    在C# Core中进行图片处理是一项常见的任务,其中包括图片压缩和剪切操作。无损压缩和剪切技术在保持原始图像质量的同时,可以减小文件大小或改变图像的形状。以下将详细介绍C# Core中如何实现这些功能。 首先,我们...

    图片压缩小工具

    《ImageResizer.exe:一款轻巧实用的图片压缩神器》 在数字时代,我们经常会遇到大量图片需要处理的情况,无论是为了存储空间的节省,还是为了网络传输的便捷,图片压缩都成为了必不可少的操作。今天,我们要介绍的...

    图片压缩到最小.rar

    在IT领域,图片压缩是一项重要的技术,特别是在网络传输、存储和显示方面。"图片压缩到最小.rar"这个压缩包文件的标题和描述直接指向了这一主题。本文将深入探讨图片压缩的基本原理、常见方法以及易语言...

    易语言图片压缩到最小

    在IT行业中,图片压缩是一项非常重要的技术,尤其是在网络传输、存储和显示图像时。"易语言图片压缩到最小"这个主题涉及到的是如何使用易语言这一编程工具来实现图片的高效压缩,以减小其占用的存储空间。易语言是...

    C#图片压缩工具源代码

    Grearo图片压缩工具 功能介绍【必读】: 1 图片批量压缩(30以内,依个人机器以及被压缩图片大小而定); 2 图片限定宽度,等比例压缩; 3 图片限定高度,等比例压缩; 4 图片限定高度,宽度压缩;...

    java图片压缩处理(可以压缩为任意大小

    在Java编程语言中,处理图片压缩是一项常见的任务,特别是在存储、传输或展示大量图像资源时。本主题将深入探讨如何使用Java实现图片压缩,并能够将其调整到任意大小,同时保持图片质量并避免变形。 首先,我们需要...

    图片压缩节约内存

    在IT行业中,图片压缩是一个非常重要的技术,尤其是在内存管理和移动应用开发中。标题"图片压缩节约内存"直接指向了这个核心目标:通过压缩图片来减少应用程序对内存的占用,从而提高性能并避免内存溢出的问题。这在...

    小巧的图片压缩工具,压缩比例可调。

    在IT领域,图片压缩是一个非常实用的技术,尤其在网页设计、社交媒体分享、存储空间有限的设备上。本文将深入探讨一款被描述为“小巧的图片压缩工具,压缩比例可调”的软件,它允许用户批量处理图片,降低文件大小而...

    C# 图片压缩 多文件压缩

    在IT行业中,图片压缩和文件压缩是常见的操作,特别是在存储和传输大量数据时。本文将深入探讨使用C#编程语言实现图片压缩以及多文件压缩成ZIP格式的压缩包的技术细节和自定义设置。 图片压缩主要目标是减小图像...

    移动端H5图片压缩上传

    在移动端H5应用中,图片压缩上传是一项常见的需求,它涉及到前端图像处理、文件上传以及与服务器的交互。本文将详细讲解如何实现这一功能,主要关注JavaScript开发中的图片展示处理。 首先,我们要理解图片压缩的...

    事业单位图片压缩工具

    【事业单位图片压缩工具】是一款专为事业单位设计的高效图片压缩软件,它能够处理市面上常见的多种图片格式,如JPEG(JPG)、PNG、BMP、GIF等。该工具的主要功能在于大幅度减小图片的文件大小,例如,一个原本2MB的...

    微信小程序实现图片压缩

    本文实例为大家分享了微信小程序图片压缩的具体代码,供大家参考,具体内容如下 设计思路: 选择图片后调用微信压缩图片接口,压缩后接收压缩图片的临时地址,调用微信储存接口保存图片至本地。 参数: imagesrc:...

    图片压缩flex demo

    在IT行业中,图片压缩是一个非常重要的领域,尤其是在网络传输、存储和显示方面。"图片压缩flex demo"这个项目显然关注的是使用Flex技术进行图片压缩的示例。Flex是一种基于Adobe Flash Player或Adobe AIR运行时的...

    蜂鸟图片压缩软件 JPG PNG 压缩

    【蜂鸟图片压缩软件 JPG PNG 压缩】 在数字媒体和互联网领域,图片的大小对网站加载速度和存储空间有着直接影响。为了优化用户体验和节省资源,图片压缩变得至关重要。"蜂鸟图片压缩软件"(Hummingbird)是专为此...

    pb 图片压缩、解压技术结合XML

    在本项目中,"pb 图片压缩、解压技术结合XML" 提到了如何使用PB进行图片处理,具体涉及图片的压缩和解压,并结合XML文件进行数据存储。以下是关于这个主题的详细知识点: 1. **图片压缩**:图片压缩通常是为了减小...

    ASP.NET(C#) 图片压缩类

    ### ASP.NET(C#) 图片压缩类:深入解析与应用 在现代Web开发中,图片是网站内容的重要组成部分,但过大的图片文件会严重影响网页加载速度,降低用户体验。因此,图片压缩技术成为优化网站性能的关键手段之一。本文...

    VB6图片压缩处理源码

    总的来说,VB6图片压缩处理源码可能涵盖了图像读取、压缩算法应用、图像尺寸调整、文件I/O以及用户交互等多个方面,体现了VB6结合外部库进行图像处理的能力。通过理解这些知识点,可以对源码进行深入研究和扩展,以...

    html5 canvas 图片压缩

    HTML5 Canvas是Web开发中的一个强大工具,它允许开发者在网页上进行动态...通过理解并运用上述技术,你可以创建一个高效且兼容性强的图片压缩解决方案,确保在微信、Chrome、Firefox等不同环境中都能得到良好的效果。

    批量图片压缩处理工具

    在IT行业中,图片压缩是一个非常重要的领域,尤其是在网络传输、存储和显示图像时,为了减少带宽需求和存储空间,通常需要对图片进行压缩。批量图片压缩处理工具就是专门针对这种情况设计的,它能帮助用户一次性处理...

    图片压缩工具PNG图片压缩工具压缩率高不失真

    PNG图片压缩工具是一种高效优化图像文件大小的软件,尤其适用于需要高质量、透明度支持的图像。PNG(Portable Network Graphics)格式因其无损压缩和广泛的颜色范围而被广泛使用,但通常其文件大小比其他格式如JPEG...

Global site tag (gtag.js) - Google Analytics