亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用Java怎么將不同的圖片剪裁成一尺寸的縮略圖

發布時間:2020-12-05 15:46:18 來源:億速云 閱讀:180 作者:Leah 欄目:編程語言

利用Java怎么將不同的圖片剪裁成一尺寸的縮略圖?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

源碼如下:

package platform.edu.resource.utils;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
/**
 * 圖片工具類
 * @author hjn
 * @version 1.0 2013-11-26
 *
 */
public class ImageUtil {
/**
 * 圖片等比縮放居中剪裁
 * 不管尺寸不等的圖片生成的縮略圖都是同一尺寸,方便用于頁面展示
 * @param imageSrc圖片所在路徑
 * @param thumbWidth縮略圖寬度
 * @param thumbHeight縮略圖長度
 * @param outFilePath縮略圖存放路徑
 * @throws InterruptedException
 * @throws IOException
 */
public static void createImgThumbnail(String imgSrc, int thumbWidth, int thumbHeight, String outFilePath) throws InterruptedException, IOException {
File imageFile=new File(imgSrc);
BufferedImage image = ImageIO.read(imageFile);
Integer width = image.getWidth();
Integer height = image.getHeight();
double i = (double) width / (double) height;
double j = (double) thumbWidth / (double) thumbHeight;
int[] d = new int[2];
int x = 0;
int y = 0;
if (i > j) {
d[1] = thumbHeight;
d[0] = (int) (thumbHeight * i);
y = 0;
x = (d[0] - thumbWidth) / 2;
} else {
d[0] = thumbWidth;
d[1] = (int) (thumbWidth / i);
x = 0;
y = (d[1] - thumbHeight) / 2;
}
File outFile = new File(outFilePath);
if (!outFile.getParentFile().exists()) {
outFile.getParentFile().mkdirs();
}
/*等比例縮放*/
BufferedImage newImage = new BufferedImage(d[0],d[1],image.getType());
    Graphics g = newImage.getGraphics();
    g.drawImage(image, 0,0,d[0],d[1],null);
    g.dispose();
    /*居中剪裁*/
newImage = newImage.getSubimage(x, y, thumbWidth, thumbHeight);
ImageIO.write(newImage, imageFile.getName().substring(imageFile.getName().lastIndexOf(".") + 1), outFile);
}
}

關于利用Java怎么將不同的圖片剪裁成一尺寸的縮略圖問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

浦城县| 天镇县| 宁波市| 滦南县| 满城县| 成安县| 双桥区| 休宁县| 平罗县| 嘉祥县| 同德县| 济宁市| 台东县| 临海市| 资阳市| 大城县| 巴林左旗| 正阳县| 新丰县| 特克斯县| 宣武区| 隆尧县| 湘西| 商南县| 石嘴山市| 西乡县| 剑阁县| 双流县| 大埔县| 清河县| 石阡县| 枣庄市| 孟连| 宁陵县| 大同县| 班玛县| 宝应县| 宝坻区| 永春县| 常宁市| 沁水县|