- 新增 PosterSmartEngine,AI 生成文案 + 海报渲染 - 5 种布局支持文本换行和自适应字体 - 修复按钮/标签颜色显示问题 - 优化渐变遮罩和内容区域计算 - Prompt 优化:标题格式为产品名+描述
9 lines
183 B
Python
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']
|