Compare commits

..

No commits in common. "58423f461a7ef70e2c3e3da1381e4394c5aec685" and "1b7f6f8a655330bdcc34a50245cb9cc08309b7c1" have entirely different histories.

View File

@ -124,7 +124,7 @@ const resizeImage = async (image) => {
// scale이 0.8 이하인 경우 완성된 이미지를 전체적으로 확대
if (originalScale <= 0.8) {
const enlargeRatio = 1.5 // 50% 확대
const enlargeRatio = 1.5 // 25% 확대
const newWidth = Math.round(mixedImage.bitmap.width * enlargeRatio)
const newHeight = Math.round(mixedImage.bitmap.height * enlargeRatio)