我需要将原始缓冲图像的大小调整为 100 px 并保留宽度/高度比。下面是正在使用的代码。有人可以帮我吗?提前致谢。
int width = 100;
int height = 100;
BufferedImage resizedImage = new BufferedImage(width, height, type);
Graphics2D g = resizedImage.createGraphics();
g.drawImage(originalImage, 0, 0, width, height, null);
g.dispose();