当前位置: 软件>java软件
Java 图像缩放类库 imgscalr
本文导语: 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_BRIGHTE...
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);
}