我是靠谱客的博主 健康热狗,最近开发中收集的这篇文章主要介绍生成缩略图工具类,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、根据路径图片生成缩略图

/**
* Description: 根据图片路径生成缩略图
*
* @param imagePath
*
原图片路径
* @param w
*
缩略图宽
* @param h
*
缩略图高
* @param prevfix
*
生成缩略图的前缀
* @param force
*
是否强制按照宽高生成缩略图(如果为false,则生成最佳比例缩略图)
* @throws IOException
*/
public static void thumbnailImage(File imgFile, int w, int h,
String prevfix, boolean force) throws IOException {
Image img = ImageIO.read(imgFile);
if (!force) {
// 根据原图与要求的缩略图比例,找到最合适的缩略图比例
int width = img.getWidth(null);
int height = img.getHeight(null);
if ((width * 1.0) / w < (height * 1.0) / h) {
if (width > w) {
h = Integer.parseInt(new java.text.DecimalFormat(
"0").format(height * w / (width * 1.0)));
}
} else {
if (height > h) {
w = Integer.parseInt(new java.text.DecimalFormat(
"0").format(width * h / (height * 1.0)));
}
}
}
BufferedImage bi = new BufferedImage(w, h,
BufferedImage.TYPE_INT_RGB);
Graphics g = bi.getGraphics();
g.drawImage(img, 0, 0, w, h, Color.LIGHT_GRAY, null);
g.dispose();
// 将图片保存在原目录并加上前缀
try {
ImageIO.write(bi, "jpg", new File(imgFile.getPath() + prevfix));
} catch (IOException e) {
e.printStackTrace();
}
}

 

最后

以上就是健康热狗为你收集整理的生成缩略图工具类的全部内容,希望文章能够帮你解决生成缩略图工具类所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部