From eb03054804b798f8e28b39cd6f4d5bedcce3c606 Mon Sep 17 00:00:00 2001 From: "hyojun.choi" Date: Tue, 22 Jul 2025 09:53:43 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A3=BC=EC=84=9D=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/api/image/canvas/route.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/image/canvas/route.js b/src/app/api/image/canvas/route.js index b216319f..347c88df 100644 --- a/src/app/api/image/canvas/route.js +++ b/src/app/api/image/canvas/route.js @@ -124,7 +124,7 @@ const resizeImage = async (image) => { // scale이 0.8 이하인 경우 완성된 이미지를 전체적으로 확대 if (originalScale <= 0.8) { - const enlargeRatio = 1.5 // 25% 확대 + const enlargeRatio = 1.5 // 50% 확대 const newWidth = Math.round(mixedImage.bitmap.width * enlargeRatio) const newHeight = Math.round(mixedImage.bitmap.height * enlargeRatio)