hookehuyr

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

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