程序包 com.sun.image.codec.jpeg 不存在
🏷️ Maven
加了生成图片缩略图的功能后,本地运行没问题,有些环境执行 Maven 的打包也没有问题,但是在部分机器上报如下错误。
程序包 com.sun.image.codec.jpeg 不存在
参照 maven 项目编译:程序包 com.sun.image.codec.jpeg 不存在 这个类文件的位置在 jre/lib/rt.jar 中的解决方法,改用javax.imageio.ImageIO
来生成缩略图。
修改前代码
java
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.*;
/**
* 图片 Helper
* Created by liujiajia on 2018/1/6.
*/
public class ImageHelper {
/**
* 采用指定宽度、高度或压缩比例 的方式对图片进行压缩
*
* @param imgsrc 源图片地址
* @param imgdist 目标图片地址
* @param widthdist 压缩后图片宽度(当 rate==null 时,必传)
* @param heightdist 压缩后图片高度(当 rate==null 时,必传)
* @param rate 压缩比例
*/
public static void reduceImg(String imgsrc, String imgdist, int widthdist,
int heightdist, Float rate) {
try {
File srcfile = new File(imgsrc);
// 检查文件是否存在
if (!srcfile.exists()) {
return;
}
// 获取文件高度和宽度
int[] results = getImgWidth(srcfile);
if (results == null || results[0] == 0 || results[1] == 0) {
return;
}
// 如果 rate 不为空说明是按比例压缩
if (rate != null && rate > 0) {
widthdist = (int) (results[0] * rate);
heightdist = (int) (results[1] * rate);
} else {
// 压缩后图片保持原图比例
float widthRate = (float)widthdist / (float)results[0];
if (widthRate > 1) { widthRate = 1; }
float heightRate = (float)heightdist / (float)results[1];
if (heightRate > 1) { heightRate = 1; }
rate = widthRate > heightdist ? widthRate : heightRate;
widthdist = (int) (results[0] * rate);
heightdist = (int) (results[1] * rate);
}
// 开始读取文件并进行压缩
Image src = javax.imageio.ImageIO.read(srcfile);
BufferedImage tag = new BufferedImage((int) widthdist,
(int) heightdist, BufferedImage.TYPE_INT_RGB);
tag.getGraphics().drawImage(
src.getScaledInstance(widthdist, heightdist,
Image.SCALE_SMOOTH), 0, 0, null);
FileOutputStream out = new FileOutputStream(imgdist);
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
encoder.encode(tag);
out.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}
/**
* 获取图片宽度
*
* @param file 图片文件
* @return 宽度
*/
public static int[] getImgWidth(File file) {
InputStream is = null;
BufferedImage src = null;
int result[] = {0, 0};
try {
is = new FileInputStream(file);
src = javax.imageio.ImageIO.read(is);
result[0] = src.getWidth(null); // 得到源图宽
result[1] = src.getHeight(null); // 得到源图高
is.close();
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
}
修改后代码
java
import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.*;
public class ImageHelper {
/**
* 采用指定宽度、高度或压缩比例 的方式对图片进行压缩
*
* @param imgsrc 源图片地址
* @param imgdist 目标图片地址
* @param widthdist 压缩后图片宽度(当 rate==null 时,必传)
* @param heightdist 压缩后图片高度(当 rate==null 时,必传)
* @param rate 压缩比例
*/
public static void reduceImg(String imgsrc, String imgdist, int widthdist,
int heightdist, Float rate) {
try {
File srcfile = new File(imgsrc);
// 检查文件是否存在
if (!srcfile.exists()) {
return;
}
// 获取文件高度和宽度
int[] results = getImgWidth(srcfile);
if (results == null || results[0] == 0 || results[1] == 0) {
return;
}
// 如果 rate 不为空说明是按比例压缩
if (rate != null && rate > 0) {
widthdist = (int) (results[0] * rate);
heightdist = (int) (results[1] * rate);
} else {
// 压缩后图片保持原图比例
float widthRate = (float)widthdist / (float)results[0];
if (widthRate > 1) { widthRate = 1; }
float heightRate = (float)heightdist / (float)results[1];
if (heightRate > 1) { heightRate = 1; }
rate = widthRate > heightdist ? widthRate : heightRate;
widthdist = (int) (results[0] * rate);
heightdist = (int) (results[1] * rate);
}
// 开始读取文件并进行压缩
Image src = javax.imageio.ImageIO.read(srcfile);
BufferedImage tag = new BufferedImage((int) widthdist,
(int) heightdist, BufferedImage.TYPE_INT_RGB);
tag.getGraphics().drawImage(
src.getScaledInstance(widthdist, heightdist,
Image.SCALE_SMOOTH), 0, 0, null);
FileOutputStream out = new FileOutputStream(imgdist);
// JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
// encoder.encode(tag);
ImageIO.write(tag, "jpg", out);
out.flush();
out.close();
tag.flush();
tag = null;
} catch (IOException ex) {
ex.printStackTrace();
}
}
/**
* 获取图片宽度
*
* @param file 图片文件
* @return 宽度
*/
public static int[] getImgWidth(File file) {
InputStream is = null;
BufferedImage src = null;
int result[] = {0, 0};
try {
is = new FileInputStream(file);
src = javax.imageio.ImageIO.read(is);
result[0] = src.getWidth(null); // 得到源图宽
result[1] = src.getHeight(null); // 得到源图高
is.close();
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
}