Java gif图片转换为jpg格式

所属分类: 软件编程 / java 阅读数: 45
收藏 0 赞 0 分享

下面通过代码给大家介绍Java gif图片转换为jpg格式,具体代码如下所示:

if(fileName.toLowerCase().endsWith(".gif")){//由于头像上传支持JPG、JPEG、BMP、GIF、PNG格式图片.而商汤人脸设备仅支持JPG、JPEG、BMP、PNG,故如图片为GIF格式需要转换
   fileParams.put("avatarFile", api.GifToJpg(avatar_file));
 }else{
   fileParams.put("avatarFile", api.getBytes(avatar_file));
 }
/**
  * 将文件转换为byte二进制流
  * @param f
  * @return
  */
 public static byte[] getBytes(File f) {
  try {
   InputStream in = new FileInputStream(f);
   ByteArrayOutputStream out = new ByteArrayOutputStream(1024);
   byte[] b = new byte[1024];
   int n;
   while ((n = in.read(b)) != -1)
    out.write(b, 0, n);
   in.close();
   out.close();
   return out.toByteArray();
  } catch (IOException e) {
   logger.error("***请设置文件路径***");
   e.printStackTrace();
  }
  return null;
 }
 /**
  * 将gif格式图片转换为jpg格式文件,并直接返回byte二进制流
  * @param file
  * @return
  */
 public static byte[] GifToJpg(File file){
  BufferedImage bufferedImage;
  ByteArrayOutputStream out = new ByteArrayOutputStream(1024);
  try {
   // read image file
   bufferedImage = ImageIO.read(file);
   // create a blank, RGB, same width and height, and a white
   BufferedImage newBufferedImage = new BufferedImage(
     bufferedImage.getWidth(), bufferedImage.getHeight(),
     BufferedImage.TYPE_INT_RGB);
   // TYPE_INT_RGB:创建一个RBG图像,24位深度,成功将32位图转化成24位
   newBufferedImage.createGraphics().drawImage(bufferedImage, 0, 0,Color.WHITE, null);
   // write to jpeg file
   ImageIO.write(newBufferedImage, "jpg",out);//转换输出到二进制数组流
   //ImageIO.write(newBufferedImage, "jpg",new File("c:\\java.jpg"));//转换输出到文件
   return out.toByteArray();//二进制流
  } catch (IOException e) {
   logger.error("***GifToJpg方法报错***");
   e.printStackTrace();
  }
  return null;
 }

知识点扩展:

用java将png图片转换成jpg格式的图片

import java.awt.Color;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
public class ConvertImageFile {
 public static void main(String[] args) {
 BufferedImage bufferedImage;
 try {
  //read image file
  bufferedImage = ImageIO.read(new File("c:\\java.png"));
  // create a blank, RGB, same width and height, and a white background
  BufferedImage newBufferedImage = new BufferedImage(bufferedImage.getWidth(),
   bufferedImage.getHeight(), BufferedImage.TYPE_INT_RGB);
  //TYPE_INT_RGB:创建一个RBG图像,24位深度,成功将32位图转化成24位
  newBufferedImage.createGraphics().drawImage(bufferedImage, 0, 0, Color.WHITE, null);
  // write to jpeg file
  ImageIO.write(newBufferedImage, "jpg", new File("c:\\java.jpg"));
  System.out.println("Done");
 } catch (IOException e) {
  e.printStackTrace();
 }
 }
}

以上所述是小编给大家介绍的Java gif图片转换为jpg格式,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

更多精彩内容其他人还在看

JavaWeb项目部署到服务器详细步骤详解

这篇文章主要介绍了JavaWeb项目如何部署到服务器,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

IDEA基于支付宝小程序搭建springboot项目的详细步骤

这篇文章主要介绍了IDEA基于支付宝小程序搭建springboot项目的详细步骤,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

详解SpringBoot应用服务启动与安全终止

这篇文章主要介绍了SpringBoot应用服务启动与安全终止,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Spring Boot启动及退出加载项的方法

这篇文章主要介绍了Spring Boot启动及退出加载项的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Spring Data Jpa 自动生成表结构的方法示例

这篇文章主要介绍了Spring Data Jpa 自动生成表结构的方法示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

IDEA中osgi的开发应用指南详解

这篇文章主要介绍了IDEA中osgi的开发应用指南详解,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

详解用maven将dubbo工程打成jar包运行

这篇文章主要介绍了详解用maven将dubbo工程打成jar包运行,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

详解Java合并数组的两种实现方式

这篇文章主要介绍了Java合并数组的两种实现方式,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

使用Jenkins Pipeline自动化构建发布Java项目的方法

这篇文章主要介绍了使用Jenkins Pipeline自动化构建发布Java项目的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

使用Maven配置Spring的方法步骤

这篇文章主要介绍了使用Maven配置Spring的方法步骤,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享
查看更多