java将图片生成缩略图,并将图片放入指定文件夹下

//将文件写入到本地并返回图片路径(路径用于存入数据库)
    public String[] uploadImage1(MultipartFile file){
        //时间戳
        String currentTime =String.valueOf(new Date().getTime());
        //原始图片路径
        String original = "D:/original"  + "/" + currentTime+".jpg";
        //缩略图路径
        String thumbnail = "D:/thumbnail" + "/" + currentTime+".jpg";

        FileOutputStream out = null;
        try {
            byte[] bytes = file.getBytes();
            File newFile = new File(original);
            if (!newFile.exists()) {
                newFile.getParentFile().mkdirs();
                //创建文件
                newFile.createNewFile();
            }
            out = new FileOutputStream(newFile);
            out.write(bytes);
            out.flush();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                out.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        //生成缩略图
        ImgConvert imgConvert = new ImgConvert();
        imgConvert.imgConvert(original,thumbnail);

        String[] imgPath = {original,thumbnail};
        return imgPath;
    }
import javax.imageio.ImageIO;
import java.awt.geom.AffineTransform;
import java.awt.image.AffineTransformOp;
import java.awt.image.BufferedImage;
import java.io.File;

/**
 * 使用仿射转换的技术进行图片绘制,缩小图片
 */
public class ImgConvert {
    public void imgConvert(String oldImgPath,String newImgPath){
    try {
        File fi = new File(oldImgPath); //大图文件
        File fo = new File(newImgPath); //将要转换出的小图文件
        if (!fo.exists()) {
            fo.getParentFile().mkdirs();
            //创建文件
            fo.createNewFile();
        }
        int nw = 200;
			/*
			AffineTransform 类表示 2D 仿射变换,它执行从 2D 坐标到其他 2D
			坐标的线性映射,保留了线的“直线性”和“平行性”。可以使用一系
			列平移、缩放、翻转、旋转和剪切来构造仿射变换。
			*/
        AffineTransform transform = new AffineTransform();
        BufferedImage bis = ImageIO.read(fi); //读取图片
        int w = bis.getWidth();
        int h = bis.getHeight();
        int nh = (nw*h)/w ;
        double sx = (double)nw/w;
        double sy = (double)nh/h;
        transform.setToScale(sx,sy); //setToScale(double sx, double sy) 将此变换设置为缩放变换。
			/*
			 * AffineTransformOp类使用仿射转换来执行从源图像或 Raster 中 2D 坐标到目标图像或
			 *  Raster 中 2D 坐标的线性映射。所使用的插值类型由构造方法通过
			 *  一个 RenderingHints 对象或通过此类中定义的整数插值类型之一来指定。
			如果在构造方法中指定了 RenderingHints 对象,则使用插值提示和呈现
			的质量提示为此操作设置插值类型。要求进行颜色转换时,可以使用颜色
			呈现提示和抖动提示。 注意,务必要满足以下约束:源图像与目标图像
			必须不同。 对于 Raster 对象,源图像中的 band 数必须等于目标图像中
			的 band 数。
			*/
        AffineTransformOp ato = new AffineTransformOp(transform,null);
        BufferedImage bid = new BufferedImage(nw,nh,BufferedImage.TYPE_3BYTE_BGR);
        /*
         * TYPE_3BYTE_BGR 表示一个具有 8 位 RGB 颜色分量的图像,
         * 对应于 Windows 风格的 BGR 颜色模型,具有用 3 字节存
         * 储的 Blue、Green 和 Red 三种颜色。
         */
        ato.filter(bis,bid);
        ImageIO.write(bid,"jpeg",fo);
    } catch(Exception e) {
        e.printStackTrace();
    }
    }
}

  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值