java 实现jpg、png、tif、gif 任意图像格式转换

根据企业真实需求背景,java实现jpg、png、tif、gif 任意图像格式转换

方法名说明
imageConvertCommon任意图像转换通用类
imageConvertToGIF图像任意格式转gif
imageConvertToTif图像任意格式转tif
imageConvertToJPG图像任意格式转jpg
imageConvertToPNG图像任意格式转png

说一下特殊处理的部分,就是动态传后缀名,这个地方重命名用的是带.的,但是,在格式转换这一行是不带.的,这里要注意,可以采用替换或者截取的方式,这里才去的是替换,都一样吧!

if (!ImageIO.write(bi, fileSuffix.replace(".",""), new File(sDestImage))) {System.out.println(" JimiImageUtil.convertTo" + fileSuffix.toUpperCase() + "() : 转换图像格式发生异常!");return false;}
涉及的jar包,由于jar收拾收费的因此,大家可以去我的开源项目中,
下载需要的jar饱即可(见文章底部)
jai_imageio.jar
jimi-1.0.jar
package com.gblfy.util;import com.sun.jimi.core.Jimi;
import com.sun.jimi.core.JimiException;
import com.sun.jimi.core.JimiWriter;
import com.sun.jimi.core.options.JPGOptions;
import com.sun.jimi.core.options.PNGOptions;import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.awt.image.ImageProducer;
import java.io.File;/********************************************************************************* @direction: 图像格式转换类(转换时不需要关心源图的格式)* @support  : GIF(no compressed encoding), JPEG, TIFF, PNG, PICT, BMP, Targa,*             ICO, CUR, XBM, XPM, PCX, DCX* @author  :  gblfy******************************************************************************/
public class ImageConverUtil {/*** 任意图片转换** @param sSourceImage 源图片* @param sDestImage   转换后的图片* @param fileSuffix   转换后的图片扩展名* @return*/public static boolean imageConvertCommon(String sSourceImage, String sDestImage, String fileSuffix) {if (sSourceImage == null || sSourceImage.trim().equals("")) {System.out.println("JimiImageUtil.convertTo" + fileSuffix.toUpperCase() + "() : 要转换的源图像文件路径不能为空!");return false;}if (sDestImage == null || sDestImage.trim().equals("")) {sDestImage = sSourceImage.substring(0, sSourceImage.lastIndexOf(".")) + fileSuffix;} else if (!sDestImage.endsWith(fileSuffix)) {sDestImage += fileSuffix;}//检查源图像文件File tSourceImageFile = new File(sSourceImage);if (!tSourceImageFile.exists()) {System.out.println("JimiImageUtil.convertTo" + fileSuffix.toUpperCase() + "() : 要转换的源图像文件路径不存在!");return false;} else if (!tSourceImageFile.canRead()) {System.out.println("JimiImageUtil.convertTo" + fileSuffix.toUpperCase() + "(): 要转换的源图像文件路径不可读!");return false;} else if (!tSourceImageFile.isFile()) {System.out.println("JimiImageUtil.convertTo" + fileSuffix.toUpperCase() + "() : 要转换的源图像路径不是一个有效的文件名!");return false;}long lRunStartTime = System.currentTimeMillis();try {BufferedImage bi = ImageIO.read(tSourceImageFile);if (bi == null) {//图片解码错误System.out.println("Jre:" + System.getProperty("java.version"));System.out.println(" JimiImageUtil.convertTo" + fileSuffix.toUpperCase() + "() : 要转换的源图像解码错误!");return false;}if (!ImageIO.write(bi, fileSuffix.replace(".",""), new File(sDestImage))) {System.out.println(" JimiImageUtil.convertTo" + fileSuffix.toUpperCase() + "() : 转换图像格式发生异常!");return false;}long lRunEndTime = System.currentTimeMillis();long lRunTime = lRunEndTime - lRunStartTime;System.out.println(" JimiImageUtil.convertToJPG() 运行时间 : " + lRunTime + " 毫秒");} catch (Exception e) {System.out.println(" JimiImageUtil.convertTo" + fileSuffix.toUpperCase() + "() : 转换图像格式发生异常!");return false;}return true;}/*** 图片转gif** @param sSourceImage 源图片的绝对路径  D:\5\1.jpg D:\5\1.png* @param sDestImage   转换后的gif图片路径  D:\5\1.gif* @return*/public static boolean imageConvertToGIF(String sSourceImage, String sDestImage) {if (sSourceImage == null || sSourceImage.trim().equals("")) {System.out.println(" JimiImageUtil.convertToGIF() : 要转换的源图像文件路径不能为空!");return false;}if (sDestImage == null || sDestImage.trim().equals("")) {sDestImage = sSourceImage.substring(0, sSourceImage.lastIndexOf(".")) + ".gif";} else if (!sDestImage.endsWith(".gif")) {sDestImage += ".gif";}//检查源图像文件File tSourceImageFile = new File(sSourceImage);if (!tSourceImageFile.exists()) {System.out.println(" JimiImageUtil.convertToGIF() : 要转换的源图像文件路径不存在!");return false;} else if (!tSourceImageFile.canRead()) {System.out.println(" JimiImageUtil.convertToGIF() : 要转换的源图像文件路径不可读!");return false;} else if (!tSourceImageFile.isFile()) {System.out.println(" JimiImageUtil.convertToGIF() : 要转换的源图像路径不是一个有效的文件名!");return false;}try {BufferedImage bi = ImageIO.read(tSourceImageFile);if (bi == null) {//图片解码错误System.out.println("Jre:" + System.getProperty("java.version"));System.out.println(" JimiImageUtil.convertToGIF() : 要转换的源图像解码错误!");return false;}if (!ImageIO.write(bi, "gif", new File(sDestImage))) {System.out.println(" JimiImageUtil.convertToGIF() : 转换图像格式发生异常!");return false;}} catch (Exception e) {System.out.println(" JimiImageUtil.convertToGIF() : 转换图像格式发生异常!");return false;}return true;}/*** 图片转Tif** @param sSourceImage* @param sDestImage* @return*/public static boolean imageConvertToTif(String sSourceImage, String sDestImage) {if (sSourceImage == null || sSourceImage.trim().equals("")) {System.out.println(" JimiImageUtil.convertToGIF() : 要转换的源图像文件路径不能为空!");return false;}if (sDestImage == null || sDestImage.trim().equals("")) {sDestImage = sSourceImage.substring(0, sSourceImage.lastIndexOf(".")) + ".tif";} else if (!sDestImage.endsWith(".tif")) {sDestImage += ".tif";}//检查源图像文件File tSourceImageFile = new File(sSourceImage);if (!tSourceImageFile.exists()) {System.out.println(" JimiImageUtil.convertToTif() : 要转换的源图像文件路径不存在!");return false;} else if (!tSourceImageFile.canRead()) {System.out.println(" JimiImageUtil.convertToTif() : 要转换的源图像文件路径不可读!");return false;} else if (!tSourceImageFile.isFile()) {System.out.println(" JimiImageUtil.convertToTif() : 要转换的源图像路径不是一个有效的文件名!");return false;}try {BufferedImage bi = ImageIO.read(tSourceImageFile);if (bi == null) {//图片解码错误System.out.println("Jre:" + System.getProperty("java.version"));System.out.println(" JimiImageUtil.convertToTif() : 要转换的源图像解码错误!");return false;}if (!ImageIO.write(bi, "tif", new File(sDestImage))) {System.out.println(" JimiImageUtil.convertToTif() : 转换图像格式发生异常!");return false;}} catch (Exception e) {System.out.println("JimiImageUtil.convertToTif() : 转换图像格式发生异常!");return false;}return true;}/*** 转换图像格式为 JPG** @param sSourceImage, 其它格式的源图像文件路径* @param sDestImage,   目标 JPG 图像文件存放路径* @param nQuality,     品质, 0-100, 数值越高品质越好* @return*/public static boolean imageConvertToJPG(String sSourceImage, String sDestImage, int nQuality) {if (sSourceImage == null || sSourceImage.trim().equals("")) {System.out.println(" JimiImageUtil.convertToJPG() : 要转换的源图像文件路径不能为空!");return false;}if (sDestImage == null || sDestImage.trim().equals("")) {sDestImage = sSourceImage.substring(0, sSourceImage.lastIndexOf(".")) + ".jpg";} else if (!sDestImage.endsWith(".jpg")) {sDestImage += ".jpg";}//检查源图像文件File tSourceImageFile = new File(sSourceImage);if (!tSourceImageFile.exists()) {System.out.println(" JimiImageUtil.convertToJPG() : 要转换的源图像文件路径不存在!");return false;} else if (!tSourceImageFile.canRead()) {System.out.println(" JimiImageUtil.convertToJPG() : 要转换的源图像文件路径不可读!");return false;} else if (!tSourceImageFile.isFile()) {System.out.println(" JimiImageUtil.convertToJPG() : 要转换的源图像路径不是一个有效的文件名!");return false;}tSourceImageFile = null;try {long lRunStartTime = System.currentTimeMillis();JPGOptions tJPGOptions = new JPGOptions();if (nQuality < 0 || nQuality > 100) {tJPGOptions.setQuality(75);} else {tJPGOptions.setQuality(nQuality);}ImageProducer tImageProducer = Jimi.getImageProducer(sSourceImage);JimiWriter tJimiWriter = Jimi.createJimiWriter(sDestImage);tJimiWriter.setSource(tImageProducer);tJimiWriter.setOptions(tJPGOptions);tJimiWriter.putImage(sDestImage);tImageProducer = null;tJimiWriter = null;tJPGOptions = null;long lRunEndTime = System.currentTimeMillis();long lRunTime = lRunEndTime - lRunStartTime;System.out.println(" JimiImageUtil.convertToJPG() 运行时间 : " + lRunTime + " 毫秒");} catch (JimiException je) {System.out.println(" JimiImageUtil.convertToJPG() : 转换图像格式发生异常!");je.printStackTrace();return false;} catch (Exception ex) {ex.printStackTrace();return false;}return true;}/*** 转换图像格式为 PNG** @param sSourceImage , 其它格式的源图像文件路径* @param sDestImage   ,目标 PNG 图像文件存放路径* @param sCompression ,压缩比, none, default, fast, max* @return*/public static boolean imageConvertToPNG(String sSourceImage, String sDestImage, String sCompression) {if (sSourceImage == null || sSourceImage.trim().equals("")) {System.out.println(" JimiImageUtil.convertToPNG() : 要转换的源图像文件路径不能为空!");return false;}if (sDestImage == null || sDestImage.trim().equals("")) {sDestImage = sSourceImage.substring(0, sSourceImage.lastIndexOf(".")) + ".png";} else if (!sDestImage.endsWith(".png")) {sDestImage += ".png";}//----------------------------------------------------------------------//检查源图像文件File tSourceImageFile = new File(sSourceImage);if (!tSourceImageFile.exists()) {System.out.println(" JimiImageUtil.convertToPNG() : 要转换的源图像文件路径不存在!");return false;} else if (!tSourceImageFile.canRead()) {System.out.println(" JimiImageUtil.convertToPNG() : 要转换的源图像文件路径不可读!");return false;} else if (!tSourceImageFile.isFile()) {System.out.println(" JimiImageUtil.convertToPNG() : 要转换的源图像路径不是一个有效的文件名!");return false;}tSourceImageFile = null;try {long lRunStartTime = System.currentTimeMillis();PNGOptions tPNGOptions = new PNGOptions();if (sCompression == null || sCompression.trim().equals("")) {tPNGOptions.setCompressionType(PNGOptions.COMPRESSION_DEFAULT);} else if (sCompression.equalsIgnoreCase("none")) {tPNGOptions.setCompressionType(PNGOptions.COMPRESSION_NONE);} else if (sCompression.equalsIgnoreCase("fast")) {tPNGOptions.setCompressionType(PNGOptions.COMPRESSION_FAST);} else if (sCompression.equalsIgnoreCase("max")) {tPNGOptions.setCompressionType(PNGOptions.COMPRESSION_MAX);} else {tPNGOptions.setCompressionType(PNGOptions.COMPRESSION_DEFAULT);}ImageProducer tImageProducer = Jimi.getImageProducer(sSourceImage);JimiWriter tJimiWriter = Jimi.createJimiWriter(sDestImage);tJimiWriter.setSource(tImageProducer);tJimiWriter.setOptions(tPNGOptions);tJimiWriter.putImage(sDestImage);tImageProducer = null;tJimiWriter = null;tPNGOptions = null;long lRunEndTime = System.currentTimeMillis();long lRunTime = lRunEndTime - lRunStartTime;System.out.println(" JimiImageUtil.convertToPNG() 运行时间 : " + lRunTime + " 毫秒");} catch (JimiException je) {System.out.println(" JimiImageUtil.convertToPNG() : 转换图像格式发生异常!");je.printStackTrace();return false;} catch (Exception ex) {ex.printStackTrace();return false;}return true;}public static void main(String[] args) {// jpg png gif tif 图片格式互转String inputFilePath = "D:" + File.separator + "7" + File.separator + "1.jpg";String outputFilePath = "D:" + File.separator + "7" + File.separator + "1.tif";String fileSuffix = "tif";ImageConverUtil.imageConvertCommon(outputFilePath, inputFilePath, fileSuffix);System.out.println("-----------------执行完成-------------");//png /jpg 转tif// String inputFilePath = "D:" + File.separator + "6" + File.separator + "1.jpg";// String inputFilePath = "D:" + File.separator + "6" + File.separator + "1.png";// String outputFilePath = "D:" + File.separator + "6" + File.separator + "1.tif";// ImageConverUtil.imageConvertToTif(inputFilePath, outputFilePath);// System.out.println("-----------------执行完成-------------");//png /jpg 转gif// String inputFilePath = "D:" + File.separator + "5" + File.separator + "1.png";// String inputFilePath = "D:" + File.separator + "5" + File.separator + "1.jpg";// String outputFilePath = "D:" + File.separator + "5" + File.separator + "1.gif";// ImageConverUtil.imageConvertToGIF(inputFilePath, outputFilePath);// System.out.println("-----------------执行完成-------------");// png转jpg// String inputFilePath = "D:" + File.separator + "4" + File.separator + "1.tif";// String outputFilePath = "D:" + File.separator + "4" + File.separator + "1.jpg";// ImageConverUtil.imageConvertToJPG(inputFilePath, outputFilePath, 100);// System.out.println("-----------------执行完成-------------");// jpg 转png// String inputFilePath = "D:" + File.separator + "3" + File.separator + "1.jpg";// String outputFilePath = "D:" + File.separator + "3" + File.separator + "1.png";// ImageConverUtil.imageConvertToPNG(inputFilePath, outputFilePath, "default");// System.out.println("-----------------执行完成-------------");}
}

jar下载链接:https://download.csdn.net/download/weixin_40816738/46766690

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/519894.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

MaxCompute studio与权限那些事儿

背景知识 MaxCompute拥有一套强大的安全体系&#xff0c;来保护项目空间里的数据安全。用户在使用MaxCompute时&#xff0c;应理解权限的一些基本概念&#xff1a; 权限可分解为三要素&#xff0c;即主体&#xff08;用户账号或角色&#xff09;&#xff0c;客体&#xff08;…

集群、分布式、微服务概念和区别

概念: 集群是个物理形态&#xff0c;分布式是个工作方式。 1.分布式&#xff1a;一个业务分拆多个子业务&#xff0c;部署在不同的服务器上 2.集群&#xff1a;同一个业务&#xff0c;部署在多个服务器上 分布式是指将不同的业务分布在不同的地方。而集群指的是将几台服务器集中…

机器学习数据集哪里找:最佳数据集来源盘点

很难找到一个特定的数据集来解决对应的机器学习问题&#xff0c;这是非常痛苦的。下面的网址列表不仅包含用于实验的大型数据集&#xff0c;还包含描述、使用示例等&#xff0c;在某些情况下还包含用于解决与该数据集相关的机器学习问题的算法代码。 1 -Kaggle数据集 网址&am…

计算机常用工具软件教案,常用工具软件教案.doc

文档介绍&#xff1a;课题:网络遨游——网络软件教学目的熟练掌握下载软件的使用方法。熟练掌握邮件处理软件的使用方法。熟练掌握FTP工具软件的使用方法。熟练掌握搜索引擎的使用方法。熟练掌握网络加速软件的使用方法。教学重点、难点熟练掌握迅雷、Foxmail、百度搜索引擎等网…

腾讯游戏与NVIDIA合作发布START云游戏服务

腾讯游戏和NVIDIA于今日宣布了一项将电脑游戏带入云端的合作。 NVIDIA的GPU技术为腾讯游戏的START云游戏服务赋力&#xff0c;该服务已从今年初开始进入测试阶段。START使游戏玩家可以随时随地&#xff0c;即使是在配置不足的设备上也能玩AAA游戏。腾讯游戏计划将扩展其云游戏…

pandas指南:做更高效的数据科学家

Python是开源的&#xff0c;所以有很多开源固有的问题。如果你是Python新手&#xff0c;很难知道针对特定任务的包哪个是最好的。你需要有经验的人来告诉你。今天我要告诉你们的是&#xff1a;在数据科学中&#xff0c;有一个软件包是你们绝对需要学习的&#xff0c;那就是pand…

java实现zip压缩文件(同一文件夹下的多个文件夹打成一个zip包)

这2个工具类都推荐使用统一个场景的不通过写法 推荐第一种 package com.gblfy.test;import java.io.BufferedInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.util.zip.CRC32; import java.util.zip.Checke…

计算机操作与规范,电脑操作基本知识(精华版)

一、快速操作规程操作五招1、按“Alt”键然后用鼠标双击文件或文件夹即可快速打开其属性。2、双击程序窗口的标题栏&#xff0c;窗口可在最大化与常规之间快速变换3、按键(或)即可快速把文件或文件夹不用进“回收站”而直接删除。4、用鼠标左键拖动文件到桌面&#xff0c;即可在…

一位技术校招生在支付宝的成长笔记

哪有那么多的“逆袭”&#xff0c;唯有努力与坚持&#xff0c;机会就会在前方。 鲁直&#xff0c;1989年生&#xff0c;本科毕业于浙江工业大学&#xff0c;之后被校招进阿里巴巴。虽然&#xff0c;今年刚刚30岁&#xff0c;但他已是蚂蚁金服SOFA中间件开源负责人。 看到这个开…

NVIDIA向交通运输行业开源其自动驾驶汽车深度神经网络

NVIDIA今日宣布&#xff0c;在NVIDIA GPU Cloud (NGC)容器注册上&#xff0c;向交通运输行业开源NVIDIA DRIVE™自动驾驶汽车开发深度神经网络。 NVIDIA DRIVE已成为自动驾驶汽车开发的行业标准&#xff0c;并且被汽车制造商、卡车制造商、自动驾驶出租车公司、软件公司和大学…

java.sql.SQLException: ORA-01691: Lob 段 SONARQUBE2.SYS_LOB0000119128C00008$$ 无法通过 128 (在表空间 USERS 中

文章目录一、场景浮现1. 问题详情2. 问题描述3. 问题原因二、解决方案2.1. 查看表空间的名字及文件在哪2.2. 查询表空间使用情况2.3. 解决方法一、场景浮现 1. 问题详情 2. 问题描述 java.sql.SQLException: ORA-01691: Lob 段 SONARQUBE2.SYS_LOB0000119128C00008$$ 无法通过…

计算机2级什么时间考,全国计算机2级考试什么时间出成绩单

2019-06-20 01:27齐新伟查分时间有关成绩查询的具体事宜&#xff1a;1、全国计算机等级考试的成绩将在考后约45-90天内得到成绩(不同地区公布成绩的时间将有所差异)&#xff0c;查询方法有声讯电话(快、收费)、考点成绩单报送(慢、免费)、网上查询(部分省市开通&#xff0c;快&…

开发函数计算的正确姿势 —— 安装第三方依赖

前言 首先介绍下在本文出现的几个比较重要的概念&#xff1a; 函数计算&#xff08;Function Compute&#xff09;: 函数计算是一个事件驱动的服务&#xff0c;通过函数计算&#xff0c;用户无需管理服务器等运行情况&#xff0c;只需编写代码并上传。函数计算准备计算资源&am…

终于等到你!阿里正式向 Apache Flink 贡献 Blink 源码

阿里妹导读&#xff1a;如同我们去年12月在 Flink Forward China 峰会所约&#xff0c;阿里巴巴内部 Flink 版本 Blink 将于 2019 年 1 月底正式开源。今天&#xff0c;我们终于等到了这一刻。 阿里资深技术专家大沙&#xff0c;将为大家详细介绍本次开源的Blink主要功能和优化…

Oracle 表空间常用sql

--查询表空间使用情况 select a.tablespace_name,a.bytes / 1024 / 1024 "sum MB",(a.bytes - b.bytes) / 1024 / 1024 "used MB",b.bytes / 1024 / 1024 "free MB",round(((a.bytes - b.bytes) / a.bytes) * 100, 2) "used%"from (se…

五省竞赛计算机作品,关于征集2017年华北五省(市、自治区)及港澳台大学生计算机应用大赛河北赛区竞赛作品的通知...

原标题&#xff1a;关于征集2017年华北五省(市、自治区)及港澳台大学生计算机应用大赛河北赛区竞赛作品的通知学校各单位、各位老师们&#xff1a;为深入贯彻落实《国家中长期教育改革和发展规划纲要》(2010-2020年)和教育部《关于全面提高高等教育质量的若干意见》(教高[2012]…

Auto-Keras与AutoML:入门指南

在本教程中&#xff0c;你将学习如何使用Auto-Keras&#xff08;Google的AutoML的开源替代品&#xff09;来实现自动化机器学习和深度学习。 目前来说&#xff0c;深度学习从业者在数据集上训练神经网络时&#xff0c;主要正在尝试优化和平衡两个目标&#xff1a; 1.定义适合…

java实现遍历文件夹下的文件及文件夹

package com.gblfy.test;import java.io.File; import java.util.ArrayList; import java.util.LinkedList; import java.util.List;/*** 文件常用工具类** author gblfy* description FileUtil* date 2020/07/03 17:05*/ public class FileUtil {/*** 遍历目录下面的文件夹和文…

TensorFlow 2.0深度强化学习指南

在本教程中&#xff0c;我将通过实施Advantage Actor-Critic(演员-评论家&#xff0c;A2C)代理来解决经典的CartPole-v0环境&#xff0c;通过深度强化学习&#xff08;DRL&#xff09;展示即将推出的TensorFlow2.0特性。虽然我们的目标是展示TensorFlow2.0&#xff0c;但我将尽…

互联网诞生记: 浪成于微澜之间

戳蓝字“CSDN云计算”关注我们哦&#xff01;作者 | 老姜出品 | CSDN云计算&#xff08;ID&#xff1a;CSDNcloud&#xff09;“我早就预言了互联网。1975年&#xff0c;所有的技术都已经准备好了&#xff1b;1985年&#xff0c;所有的技术都应该很平常了&#xff1b;而直到199…