前言:
thumbnails是Java一个优秀的图像处理库,可以对图片进行压缩、加水印、裁剪、更改格式等功能。下面为大家介绍使用这个图像处理库。
thumbnails的使用:
一、引入依赖:
<!-- 图片处理 --> <dependency> <groupId>net.coobird</groupId> <artifactId>thumbnailator</artifactId> <version>0.4.8</version> </dependency>
二、编写工具类:
说明:这个类第一个方法就是设置上传的图片保存的很路径,比如上传的图片都保存在E:/download/image/
目录下;第二个方法就是设置图片保存的子目录,子目录是根据传入的shopId生成的,然后将根目录与子目录拼接起来就是图片的保存路径。
1、PathUtil.java:
public class PathUtil { // 获取分隔符 private static String separator = System.getProperty("file.separator"); /** * 图片保存的根目录 * @return */ public static String getImgBasePath() { // 获取操作系统 String os = System.getProperty("os.name"); String basePath = ""; if (os.toLowerCase().startsWith("win")) { // "/home/xiangze/image/" basePath = "E:/download/image/"; } else { basePath = "/home/ftpuser/images/"; } // 将斜杆替换成分隔符,这样就能保证路径是有效的 basePath = basePath.replace("/", separator); return basePath; } /** * 图片保存的子目录:</br> * upload/meilianMall/shop/" + shopId * @param shopId * @return */ public static String getShopImagePath(long shopId) { // "/upload/item/shop/"+shopId+"/" String imagePath = "upload/meilianMall/shop/" + shopId + "/"; return imagePath.replace("/", separator); } }
说明:这个类就是用thumbnails来处理图片的,进行压缩,然后加水印,然后把经过了处理的图片保存到dest目标路径下。
2、ImageUtil.java:
public class ImageUtil { // 设置时间格式 private static final SimpleDateFormat sDateFormat = new SimpleDateFormat("yyyyMMddHHmmss"); // 生成随机数对象 private static final Random r = new Random(); // 水映图片位置 private static String basePath = Thread.currentThread().getContextClassLoader().getResource("").getPath(); // 日志相关 private static Logger logger = LoggerFactory.getLogger(ImageUtil.class); /** * 对图片进行压缩并加水印 * @param thumbnail * @param targetAddr 目标路径 * @return */ public static String generateThumbnail(File uploadFile,String targetAddr) { // 传过来的图片可能是重名的,因此系统随机生成不重复名字 String realFileName = getRandomFileName(); // 获取图片扩展名,如jpg,png等 String extension = getFileExtension(uploadFile); // 目标路径可能不存在,不存在就创建 makeDirPath(targetAddr); // 获取图片相对路径(目标路径+随机名+扩展名) String relativeAddr = targetAddr + realFileName + extension; logger.debug("current relativeAddr is:" + relativeAddr); // 新生成文件路径(根路径+targetAddr + realFileName + extension) File dest = new File(PathUtil.getImgBasePath() + relativeAddr); logger.debug("current complete addr is:" + PathUtil.getImgBasePath() + relativeAddr); // 创建缩略图并加水映 try { Thumbnails.of(uploadFile).size(600, 600) .watermark(Positions.BOTTOM_RIGHT, ImageIO.read(new File(basePath + "/watermark1.jpg")), 0.25f) .outputQuality(0.8f).toFile(dest); } catch (IOException e) { logger.error(e.toString()); e.printStackTrace(); } return relativeAddr; }/** * 将CommonsMultipartFile转换成File,</br> * 因为springmvc会自动把前端图片封装成CommonsMultipartFile,</br> * 上面压缩图片加水映方法可以直接传入CommonsMultipartFile,但是不方便测试,</br> * 所以上面方法是用的File,然后用这个方法把前端传入的CommonsMultipartFile转为File * @param cFile * @return */ public static File transferCommonsMultipartFileToFile(CommonsMultipartFile cFile) { File newFile = new File(cFile.getOriginalFilename()); try { cFile.transferTo(newFile); } catch (IllegalStateException e) { logger.error(e.toString()); e.printStackTrace(); } catch (IOException e) { logger.error(e.toString()); e.printStackTrace(); } return newFile; } /** * 生成随机文件名,当前年月日小时分钟秒+五位随机数 * @param args * @throws IOException */ public static String getRandomFileName() { // 获取随机五位数 int rannum = r.nextInt(89999) + 10000; // 当前时间 String nowTimeStr = sDateFormat.format(new Date()); return nowTimeStr + rannum; } /** * 获取输入文件流的扩展名 * @param args * @throws IOException */ private static String getFileExtension(File uploadFile) { String fileName = uploadFile.getName(); return fileName.substring(fileName.lastIndexOf(".")); } /** * 目标路径文件夹不存在就创建 * @param args * @throws IOException */ private static void makeDirPath(String targetAddr) { // 文件全路径 String realFileParentPath = PathUtil.getImgBasePath() + targetAddr; File dirPath = new File(realFileParentPath); if (!dirPath.exists()) { dirPath.mkdirs(); } } }
三、测试:
1、把水印图片watermark1.jpg添加到src/test/resources
下面。
2、test.java:
@Test public void testAddShop() { File shopImg = new File("E:\\download\\image\\windows.jpg"); ImageUtil.generateThumbnail(shopImg, "\\upload\\"); }
可以看到图片已经保存在目标路径下了,并且是随机生成的名字。
作者:贪挽懒月
链接:https://www.jianshu.com/p/04d04afc34fd
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦