jinye_huang dcfd820ca4 feat(poster_v2): 智能海报生成引擎 v1.0
- 新增 PosterSmartEngine,AI 生成文案 + 海报渲染
- 5 种布局支持文本换行和自适应字体
- 修复按钮/标签颜色显示问题
- 优化渐变遮罩和内容区域计算
- Prompt 优化:标题格式为产品名+描述
2025-12-10 15:04:59 +08:00

9 lines
183 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""数据模型"""
from .content import PosterContent
from .theme import Theme, THEMES
__all__ = ['PosterContent', 'Theme', 'THEMES']