feat: 头像上传选区限制 3840×3840 + 客户端裁剪压缩

- 后端:3840×2160 限制改为 3840×3840(方形限制适应方形裁剪),并移到裁剪结果上检查而非原图
- 前端:原图短边超过 3840 时自动抬高最小缩放,确保选区永不超过 3840×3840
- 前端:裁剪确认后用 Canvas 预裁剪 + JPEG 压缩再上传,大幅节省带宽
- 前端:裁剪框标题栏新增实时像素尺寸提示
- 新增 .crop-info 样式
This commit is contained in:
2026-05-31 02:42:27 +08:00
parent 09a9394c30
commit 4887093c3a
3 changed files with 95 additions and 34 deletions

View File

@ -362,6 +362,13 @@ body {
border-bottom: 1px solid var(--color-border);
}
.crop-info {
font-size: .75rem;
color: var(--color-text-secondary);
font-weight: 400;
margin-left: .5rem;
}
.crop-stage {
position: relative;
width: min(85vw, 480px);