Skip to content

Commit 89363a2

Browse files
committed
fix: 이미지 조정 로직 수정
1 parent be0dd8f commit 89363a2

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

src/main/java/com/tnt/application/s3/S3Service.java

+10-6
Original file line numberDiff line numberDiff line change
@@ -133,14 +133,18 @@ private byte[] processImage(MultipartFile image, String extension) throws IOExce
133133
// 원본 이미지 읽기
134134
BufferedImage originalImage = ImageIO.read(image.getInputStream());
135135

136-
// 이미지 방향 보정
137-
originalImage = rotateImageIfRequired(originalImage, image);
138-
139-
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
140-
141-
Thumbnails.of(originalImage)
136+
// 리사이징
137+
BufferedImage resizedImage = Thumbnails.of(originalImage)
142138
.size(MAX_WIDTH, MAX_HEIGHT)
143139
.keepAspectRatio(true)
140+
.asBufferedImage();
141+
142+
// 리사이즈된 이미지를 회전
143+
resizedImage = rotateImageIfRequired(resizedImage, image);
144+
145+
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
146+
Thumbnails.of(resizedImage)
147+
.scale(1.0) // 크기는 그대로
144148
.outputQuality(IMAGE_QUALITY)
145149
.outputFormat(extension)
146150
.toOutputStream(outputStream);

0 commit comments

Comments
 (0)