mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-07-07 15:22:48 +08:00
feat(phone-image): 添加字号倍数控制功能
- CSS: 新增 --pi-font-scale 变量,全量 font-size 支持 calc 缩放 - JS: config.fontScale 影响分页计算,applyFontScale() 同步CSS变量 - HTML: 渲染预览区 Slider 控件(0.5x~2.0x),拖动即时预览,松手完整渲染 - 后端: PhoneImage.php 新增 fontScale 配置字段和校验 - 所有保存路径(autoSave/save/generate)包含 fontScale 持久化
This commit is contained in:
@@ -19,6 +19,7 @@ class PhoneImage implements PostOutputManagerInterface
|
||||
'fontSize' => ['type' => 'number', 'default' => 14, 'min' => 10, 'max' => 24],
|
||||
'watermark' => ['type' => 'text', 'default' => ''],
|
||||
'pageAlignments' => ['type' => 'json', 'default' => '{}'],
|
||||
'fontScale' => ['type' => 'number', 'default' => 1, 'min' => 0.5, 'max' => 2.0],
|
||||
];
|
||||
}
|
||||
|
||||
@@ -38,6 +39,12 @@ class PhoneImage implements PostOutputManagerInterface
|
||||
return false;
|
||||
}
|
||||
}
|
||||
if (isset($config['fontScale'])) {
|
||||
$scale = floatval($config['fontScale']);
|
||||
if ($scale < 0.5 || $scale > 2.0) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
// watermark 是文本类型,无需特殊验证
|
||||
// pageAlignments 是 JSON 类型,存储时由框架自动序列化
|
||||
|
||||
|
||||
Reference in New Issue
Block a user