将图片的大小(分辨率)调整为指定的宽度和高度

这段代码将图像文件"original.jpg"的大小调整为宽度300像素,高度200像素,并将调整后的图像保存为"resized.jpg"。您可以根据需要修改输入和输出的文件路径和名称。

1. 方法一
import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.*;

public class ImageResize {
    public static byte[] resizeImage(byte[] imageData, int width, int height) throws IOException {
        ByteArrayInputStream bis = new ByteArrayInputStream(imageData);
        BufferedImage image = ImageIO.read(bis);

        Image resizedImage = image.getScaledInstance(width, height, Image.SCALE_SMOOTH);

        BufferedImage bufferedResizedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
        bufferedResizedImage.getGraphics().drawImage(resizedImage, 0, 0, null);

        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        ImageIO.write(bufferedResizedImage, "jpg", bos);
        byte[] resizedImageData = bos.toByteArray();

        bis.close();
        bos.close();

        return resizedImageData;
    }

    public static void main(String[] args) {
        try {
            byte[] originalImageData = Files.readAllBytes(new File("original.jpg").toPath());
            byte[] resizedImageData = resizeImage(originalImageData, 300, 200);
            Files.write(new File("resized.jpg").toPath(), resizedImageData);
            System.out.println("图片调整大小成功!");
        } catch (IOException e) {
            System.out.println("图片调整大小失败: " + e.getMessage());
        }
    }
}
2. 方法二
public static byte[] resizeImage(byte[] finalImage, int width, int height) {
	try {
         BufferedImage img = ImageIO.read(new ByteArrayInputStream(imageByte));
         //创建新图片
         BufferedImage image = new BufferedImage(newWidth, newHeight, BufferedImage.TYPE_INT_RGB);
         Graphics2D g2d = image.createGraphics();
         g2d.setColor(Color.WHITE);
         g2d.fillRect(0, 0, newWidth, newHeight);
         //g2d.drawImage(img, (newWidth - img.getWidth()) / 2, (newHeight - img.getHeight()) / 2, null);
         g2d.drawImage(img.getScaledInstance(newWidth, newHeight, Image.SCALE_SMOOTH), 0, 0, null);
         g2d.dispose();
         ByteArrayOutputStream byteArrayOut = new ByteArrayOutputStream();
         ImageIO.write(image, "jpg", byteArrayOut);
         finalImage = byteArrayOut.toByteArray();
     } catch (IOException e) {
         e.printStackTrace();
     }
}

文章来源地址https://uudwc.com/A/W1gkv

原文地址:https://blog.csdn.net/qq_49641620/article/details/133239458

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请联系站长进行投诉反馈,一经查实,立即删除!

上一篇 2023年09月25日 11:16
当下IT测试技术员的求职困境
下一篇 2023年09月25日 11:16