imgscalrJava 图像缩放类库

联合创作 · 2023-09-29 17:25

imgscalr 是一个对图片进行缩放的 Java 类库。

示例代码:

import static org.imgscalr.Scalr.*;
 
public static BufferedImage createThumbnail(BufferedImage img) {
  // Create quickly, then smooth and brighten it.
  img = resize(img, Method.SPEED, 125, OP_ANTIALIAS, OP_BRIGHTER);
 
  // Let's add a little border before we return result.
  return pad(img, 4);
}
浏览 5
点赞
评论
收藏
分享

手机扫一扫分享

编辑
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑
举报