使用 Java 调整图像大小:综合指南
图像调整大小是 Java 编程中的常见任务。有多种方法可以实现此目的,选择取决于图像格式和所需的调整大小质量等因素。
其中一个解决方案是 imgscalr 库,它提供了一种简单而通用的方法。只需几行代码,您就可以调整任何格式(PNG、JPEG、GIF)的图像大小:
<code class="java">// Import the necessary library import com.mortennobel.imagescaling.ResampleOp; import java.awt.BufferedImage; import java.awt.image.BufferedImageOp; import java.awt.image.AffineTransformOp; // Load the original image BufferedImage originalImage = ImageIO.read(new File("image.png")); // Set the desired width and height of the resized image int newWidth = 200; int newHeight = 200; // Create a resize operation object BufferedImageOp resizeOp = new ResampleOp(newWidth, newHeight); // Perform the resizing BufferedImage resizedImage = resizeOp.filter(originalImage, null); // Save the resized image ImageIO.write(resizedImage, "png", new File("resized_image.png"));</code>
imgscalr 库还提供了控制调整大小质量并在不同插值算法之间进行选择的选项。这种灵活性使您可以根据您的特定要求定制调整大小过程。
以上是如何在 Java 中调整图像大小:综合指南的详细内容。更多信息请关注PHP中文网其他相关文章!