裁剪图像后我得到更大的尺寸
I get larger sizes after cropping the image
我从未在 java 中处理过图片,我是这方面的初学者。
我需要制作一个函数,根据图像中间的特定宽度和高度比例裁剪图像。
通过 REST Api 我收到一个 MultipartFile,我将其传递给图像裁剪功能。我使用 file.getBytes().
转发图像
下面是我如何编写图像裁剪功能的代码:
public static byte[] cropImage(byte[] data) {
ByteArrayInputStream bais = new ByteArrayInputStream(data);
try {
BufferedImage img = ImageIO.read(bais);
int width = img.getWidth();
int height = img.getHeight();
float aspectRatio = (float) 275 / (float) 160;
int destWidth;
int destHeight;
int startX;
int startY;
if(width/height > aspectRatio) {
destHeight = height;
destWidth = Math.round(aspectRatio * height);
startX = Math.round(( width - destWidth ) / 2);
startY = 0;
} else if (width/height < aspectRatio) {
destWidth = width;
destHeight = Math.round(width / aspectRatio);
startX = 0;
startY = Math.round((height - destHeight) / 2);
} else {
destWidth = width;
destHeight = height;
startX = 0;
startY = 0;
}
BufferedImage dst = new BufferedImage(destWidth, destHeight, BufferedImage.TYPE_INT_ARGB);
dst.getGraphics().drawImage(img, 0, 0, destWidth, destHeight, startX, startY, startX + destWidth, startY + destHeight, null);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(dst, "png", baos);
return baos.toByteArray();
} catch (IOException e) {
throw new RuntimeException("IOException in scale");
}
}
但是当我裁剪图像时,结果是一个比接收到的图像大得多的图像。我需要有关如何解决此问题的帮助。
编辑:
根据this回答,这部分代码的大小增加了:
ImageIO.read (bais)
是否有任何其他方法可以将图像从字节数组转换为缓冲图像但保持原始图像的大小?
我不知道为什么,但部分问题是 ImageIO.write(dst, "png", baos);
我尝试使用不同类型的图像(png、jpg、jpeg),只有 png
才减小了我的图像尺寸。而在我更改为 jpeg
的情况下,它减小了所有图像的大小。
我从未在 java 中处理过图片,我是这方面的初学者。 我需要制作一个函数,根据图像中间的特定宽度和高度比例裁剪图像。
通过 REST Api 我收到一个 MultipartFile,我将其传递给图像裁剪功能。我使用 file.getBytes().
转发图像下面是我如何编写图像裁剪功能的代码:
public static byte[] cropImage(byte[] data) {
ByteArrayInputStream bais = new ByteArrayInputStream(data);
try {
BufferedImage img = ImageIO.read(bais);
int width = img.getWidth();
int height = img.getHeight();
float aspectRatio = (float) 275 / (float) 160;
int destWidth;
int destHeight;
int startX;
int startY;
if(width/height > aspectRatio) {
destHeight = height;
destWidth = Math.round(aspectRatio * height);
startX = Math.round(( width - destWidth ) / 2);
startY = 0;
} else if (width/height < aspectRatio) {
destWidth = width;
destHeight = Math.round(width / aspectRatio);
startX = 0;
startY = Math.round((height - destHeight) / 2);
} else {
destWidth = width;
destHeight = height;
startX = 0;
startY = 0;
}
BufferedImage dst = new BufferedImage(destWidth, destHeight, BufferedImage.TYPE_INT_ARGB);
dst.getGraphics().drawImage(img, 0, 0, destWidth, destHeight, startX, startY, startX + destWidth, startY + destHeight, null);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(dst, "png", baos);
return baos.toByteArray();
} catch (IOException e) {
throw new RuntimeException("IOException in scale");
}
}
但是当我裁剪图像时,结果是一个比接收到的图像大得多的图像。我需要有关如何解决此问题的帮助。
编辑:
根据this回答,这部分代码的大小增加了:
ImageIO.read (bais)
是否有任何其他方法可以将图像从字节数组转换为缓冲图像但保持原始图像的大小?
我不知道为什么,但部分问题是 ImageIO.write(dst, "png", baos);
我尝试使用不同类型的图像(png、jpg、jpeg),只有 png
才减小了我的图像尺寸。而在我更改为 jpeg
的情况下,它减小了所有图像的大小。