gpt4 book ai didi

java - 使用 Java 和 AsyncScalr 缩放大图像

转载 作者:行者123 更新时间:2023-11-29 09:11:28 27 4
gpt4 key购买 nike

我在 Servlet 中使用 AsyncScalr 来缩小一些大图像(~ 10-15 兆字节),实际调整大小过程大约需要 40 毫秒,这并不多。矫枉过正来自从本地存储读取图像作为 BufferedImage。所以时间大多是这样的:

读取图像文件:1630ms !!调整图像大小:41ms写入图像:40ms

下面是我正在使用的代码,有没有更好的方法来做到这一点?

        final FileImageInputStream fileImageInputStream = new FileImageInputStream(file);
BufferedImage bufferedImage = ImageIO.read(fileImageInputStream);

// resize file
Future<BufferedImage> result = AsyncScalr.resize(bufferedImage, Method.SPEED, width, OP_ANTIALIAS, OP_BRIGHTER);
try {
bufferedImage = result.get();
}
catch (InterruptedException e) {
e.printStackTrace();
}
catch (ExecutionException e) {
e.printStackTrace();
}

// Write the image
ImageIO.write(bufferedImage, imageOutput, outputStream);

最佳答案

回答我的问题,使用java.awt.Toolkit加载图片解决了问题。

关于java - 使用 Java 和 AsyncScalr 缩放大图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12142069/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com