hookehuyr

fix(RecallPoster): 调整海报图片区域高度从480到450以保持更好比例

...@@ -138,8 +138,8 @@ const generatePoster = async () => { ...@@ -138,8 +138,8 @@ const generatePoster = async () => {
138 // 1. 准备画布尺寸 (2倍图) 138 // 1. 准备画布尺寸 (2倍图)
139 const scale = 2 139 const scale = 2
140 const width = 375 * scale 140 const width = 375 * scale
141 - // 图片区域高度缩小,从 600 -> 480,保持较好比例 141 + // 图片区域高度缩小,从 600 -> 450,保持较好比例
142 - const imgAreaHeight = 480 * scale 142 + const imgAreaHeight = 450 * scale
143 const infoAreaHeight = 130 * scale 143 const infoAreaHeight = 130 * scale
144 const height = imgAreaHeight + infoAreaHeight 144 const height = imgAreaHeight + infoAreaHeight
145 145
......