Java实现自动生成缩略图片

本文实例为大家分享了Java实现自动生成缩略图片的具体代码,供大家参考,具体内容如下

一、自动生成缩略图方法:

package writeimg;
 
import java.awt.geom.AffineTransform;
import java.awt.image.AffineTransformOp;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
 
public class JpegTool { 
        private boolean isInitFlag = false; //         对象是否己经初始化 
        private String pic_big_pathfilename = null; //定义源图片所在的带路径目录的文件名
        private String pic_small_pathfilename = null; // 生成小图片的带存放路径目录的文件名 
        private int smallpicwidth = 0; //定义生成小图片的宽度和高度,给其一个就可以了 
        private int smallpicheight = 0; 
        private int pic_big_width=0;
        private int pic_big_height=0;
        private double picscale = 0; //定义小图片的相比原图片的比例 
        /** 
        * 构造函数 
        * @param 没有参数 
        */ 
        public JpegTool(){
                this.isInitFlag = false; 
        } 
        /** 
        * 私有函数,重置所有的参数 
        * @param 没有参数 
        * @return 没有返回参数 
        */ 
        private void resetJpegToolParams(){ 
                this.picscale = 0; 
                this.smallpicwidth = 0; 
                this.smallpicheight = 0; 
                this.isInitFlag = false; 
        } 
        /** 
        * @param scale 设置缩影图像相对于源图像的大小比例如 0.5 
        * @throws JpegToolException 
        */ 
        public void SetScale(double scale) throws JpegToolException
        { 
                if(scale<=0){ 
                                throw new JpegToolException(" 缩放比例不能为 0 和负数! "); 
                } 
                this.resetJpegToolParams(); 
                this.picscale = scale; 
                this.isInitFlag = true; 
        } 
        /** 
        * @param smallpicwidth 设置缩影图像的宽度 
        * @throws JpegToolException 
        */ 
        public void SetSmallWidth(int smallpicwidth) throws JpegToolException 
        { 
                if(smallpicwidth<=0)
                { 
                        throw new JpegToolException(" 缩影图片的宽度不能为 0 和负数! "); 
                } 
                this.resetJpegToolParams(); 
                this.smallpicwidth = smallpicwidth; 
                this.isInitFlag = true; 
        } 
 
        /** 
        * @param smallpicheight 设置缩影图像的高度 
        * @throws JpegToolException 
        */ 
 
        public void SetSmallHeight(int smallpicheight) throws JpegToolException { 
                if(smallpicheight<=0)
                { 
                   throw new JpegToolException(" 缩影图片的高度不能为 0 和负数! "); 
                } 
                this.resetJpegToolParams(); 
                this.smallpicheight = smallpicheight; 
                this.isInitFlag = true; 
        } 
        
        /**
         *返回大图片路径 
         */
        public String getpic_big_pathfilename()
        {
                return this.pic_big_pathfilename;
        }
        /**
         * 返回小图片路径
         */
        public String getpic_small_pathfilename()
        {
                return this.pic_small_pathfilename;
        }
        
        public int getsrcw()
        {
                return this.pic_big_width;
        }
        public int getsrch()
        {
                return this.pic_big_height;
        }
        /** 
        * 生成源图像的缩影图像 
        * @param pic_big_pathfilename 源图像文件名,包含路径(如 windows 下 C:\\pic.jpg ; Linux 下 /home/abner/pic/pic.jpg ) 
        * @param pic_small_pathfilename 生成的缩影图像文件名,包含路径(如 windows 下 C:\\pic_small.jpg ; Linux 下 /home/abner/pic/pic_small.jpg ) 
        * @throws JpegToolException 
        */ 
        public void doFinal(String pic_big_pathfilename,String pic_small_pathfilename) throws JpegToolException { 
                if(!this.isInitFlag){ 
                    throw new JpegToolException(" 对象参数没有初始化! "); 
                } 
                if(pic_big_pathfilename==null || pic_small_pathfilename==null){ 
                    throw new JpegToolException(" 包含文件名的路径为空! "); 
                } 
                if((!pic_big_pathfilename.toLowerCase().endsWith("jpg")) && (!pic_big_pathfilename.toLowerCase().endsWith("jpeg"))){ 
                    throw new JpegToolException(" 只能处理 JPG/JPEG 文件! "); 
                } 
                if((!pic_small_pathfilename.toLowerCase().endsWith("jpg")) && !pic_small_pathfilename.toLowerCase().endsWith("jpeg")){ 
                    throw new JpegToolException(" 只能处理 JPG/JPEG 文件! "); 
                } 
                this.pic_big_pathfilename=pic_big_pathfilename;
                this.pic_small_pathfilename=pic_small_pathfilename;
                int smallw = 0; 
                int smallh = 0; 
                // 新建源图片和生成的小图片的文件对象 
                File fi = new File(pic_big_pathfilename); 
                File fo = new File(pic_small_pathfilename); 
                //生成图像变换对象 
                AffineTransform transform = new AffineTransform(); 
                //通过缓冲读入源图片文件 
                BufferedImage bsrc = null; 
                try { 
                bsrc = ImageIO.read(fi); 
                }catch (IOException ex) { 
                    throw new JpegToolException(" 读取源图像文件出错! "); 
                } 
                this.pic_big_width= bsrc.getWidth();// 原图像的长度 
                this.pic_big_height = bsrc.getHeight();// 原图像的宽度 
                double scale = (double)pic_big_width/pic_big_height;// 图像的长宽比例 
                if(this.smallpicwidth!=0)
                {// 根据设定的宽度求出长度 
                        smallw = this.smallpicwidth;// 新生成的缩略图像的长度 
                        smallh = (smallw*pic_big_height)/pic_big_width ;// 新生成的缩略图像的宽度 
                }
                else if(this.smallpicheight!=0)
                {// 根据设定的长度求出宽度 
                        smallh = this.smallpicheight;// 新生成的缩略图像的长度 
                        smallw = (smallh*pic_big_width)/pic_big_height;// 新生成的缩略图像的宽度 
                }
                else if(this.picscale!=0)
                {// 根据设置的缩小比例设置图像的长和宽 
                        smallw = (int)((float)pic_big_width*this.picscale); 
                        smallh = (int)((float)pic_big_height*this.picscale); 
                }
                else
                { 
                    throw new JpegToolException(" 对象参数初始化不正确! "); 
                }
                double sx = (double)smallw/pic_big_width;//小/大图像的宽度比例 
                double sy = (double)smallh/pic_big_height;//小/大图像的高度比例 
                transform.setToScale(sx,sy);// 设置图像转换的比例 
                //生成图像转换操作对象 
                AffineTransformOp ato = new AffineTransformOp(transform,null); 
                //生成缩小图像的缓冲对象 
                BufferedImage bsmall = new BufferedImage(smallw,smallh,BufferedImage.TYPE_3BYTE_BGR); 
                //生成小图像 
                ato.filter(bsrc,bsmall); 
                //输出小图像 
                try{
                        ImageIO.write(bsmall, "jpeg", fo); 
                }
                catch (IOException ex1) 
                { 
                   throw new JpegToolException(" 写入缩略图像文件出错! "); 
                } 
        }
}

二、异常处理类:

package jpegtool;
 
    public class JpegToolException extends Exception {
            private String errMsg = ""; 
            public JpegToolException(String errMsg) 
            { 
                    this.errMsg = errMsg; 
            } 
 
            public String getMsg(){ 
                return "JpegToolException:"+this.errMsg; 
            } 
    }

三、调用的例子:

package writeimg;
 
public class T {
 
 
    public static void main(String[] args) {
 
        JpegTool j = new JpegTool();
        try {
            j.SetScale(0.7);
            j.SetSmallHeight(100);
            j.doFinal("D:\\305\\c\\javatest\\src\\11.jpg","D:\\305\\c\\javatest\\src\\22.jpg");
        } catch (JpegToolException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
 
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Java缩略图生成库之Thumbnailator应用说明

    Thumbnailator 是一个为Java界面更流畅的缩略图生成库.从API提供现有的图像文件和图像对象的缩略图中简化了缩略过程,两三行代码就能够从现有图片生成缩略图,且允许微调缩略图生成,同时保持了需要写入到最低限度的代码量.同时还支持根据一个目录批量生成缩略图. 版本:thumbnailator-0.4.2.jar 原图如下: 1.指定大小进行缩放 复制代码 代码如下: //size(宽度, 高度) /* * 若图片横比200小,高比300小,不变 * 若图片横比200小,高比300大,高

  • Java实现的不同图片居中剪裁生成同一尺寸缩略图功能示例

    本文实例讲述了Java实现的不同图片居中剪裁生成同一尺寸缩略图功能.分享给大家供大家参考,具体如下: 因为业务需要,写了这样一个简单类,希望能帮助对有这方面需要的人,高手莫笑 源码如下: package platform.edu.resource.utils; import java.awt.Graphics; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import

  • Java 截取视频资料中的某一帧作为缩略图

    目录 基础知识 FFmpegFrameGrabber BufferedImage,ImageIO MultipartFile 具体实现 引入依赖 最近项目中有一个需求,就是要实现视频资料的收藏功能,当时想了想,收藏记录实现并不是很难,但是想展现出视频的缩略图,就要想想其他办法了,所以就想到了截取视频资料中的某一帧作为缩略图,我没有选择截取第一帧,选择的是第五帧,因为第一帧可能没有内容. 基础知识 JavaCV:功能很强大,封装了很多很视频.图片相关的内容. JavaCV 是一款基于JavaCPP

  • java生成缩略图的方法示例

    本文实例讲述了java生成缩略图的方法.分享给大家供大家参考,具体如下: package com.util; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import javax.imageio.ImageIO; /** * 生成压缩图 * */ public class ImageScale { private int width; private int heigh

  • Java 读取网络图片存储到本地并生成缩略图

    之前使用 Python 爬虫抓取电影网站信息作为自己网站的数据来源,其中包含的图片都是网络图片,会存在这样一个问题: 当原始网站访问速度比较慢时,网站图片加载时间也会变得很慢,而且如果原始网站挂了,图片就直接访问不到了. 此时的用户体验就很不好,所以对此进行了优化: 每次后端启动时会默认开启任务先将未转换的网络图片存储到本地,再把网页中图片列表改为访问本地图片,这样就解决了加载慢的问题,也降低了和原始网站的耦合性,具体步骤如下: 1.创建用于保存图片的文件夹 我的保存路径:F:\images 2

  • 详解Java实现批量压缩图片裁剪压缩多种尺寸缩略图一键批量上传图片

    10万+IT人都在关注的图片批量压缩上传方案(完整案例+代码) 背景需求:为了客户端访问图片资源时,加载图片更流畅,体验更好,通常不会直接用原图路径,需要根据不同的场景显示不同规格的缩略图,根据商品关键属性,能够获取到图片不同尺寸规格的图片路径,并且能根据不同缩略图直观看到商品的关键属性,需要写一个Java小工具把本地磁盘中的图片资源一键上传至分布式FastDFS文件服务器,并把图片信息存入本地数据库,PC端或者客户端查询商品时,就可以根据商品的业务属性.比如根据productId就能把商品相关

  • 用java实现的获取优酷等视频缩略图的实现代码

    想要php版的朋友可以到这里下载测试 http://www.jb51.net/codes/83179.html 复制代码 代码如下: import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.MalformedURLException; import java.net.URL; import net.sf.json.*; public c

  • Java图片裁剪和生成缩略图的实例方法

    一.缩略图 在浏览相册的时候,可能需要生成相应的缩略图. 直接上代码: public class ImageUtil { private Logger log = LoggerFactory.getLogger(getClass()); private static String DEFAULT_PREVFIX = "thumb_"; private static Boolean DEFAULT_FORCE = false;//建议该值为false /** * <p>Tit

  • java实现创建缩略图、伸缩图片比例生成的方法

    本文实例讲述了java实现创建缩略图.伸缩图片比例生成的方法.分享给大家供大家参考.具体实现方法如下: 该实例支持将Image的宽度.高度缩放到指定width.height,并保存在指定目录 通过目标对象的大小和标准(指定)大小计算出图片缩小的比例,可以设置图片缩放质量,并且可以根据指定的宽高缩放图片. 具体代码如下所示: 复制代码 代码如下: package com.hoo.util;   import java.awt.Image; import java.awt.image.Buffere

  • java根据url抓取并生成缩略图的示例

    java根据url抓取并生成缩略图 复制代码 代码如下: public static Bitmap loadImageFromUrl(String url, int sc) {        URL m;        InputStream i = null;        BufferedInputStream bis = null;        ByteArrayOutputStream out = null;        byte isBuffer[] = new byte[1024

随机推荐