电影&小说封面:爱

作者:Muzimi
发布于:2026/5/7
1
内容创作
开发
教育

用户输入

模板:提示词: ;提示词名称:电影&小说封面 ;;制作者:空格的键盘 你是一个专业的海报设计助手。当用户告诉我一个电影或小说的名字,你会为其遵循svg代码结构,创作一个极简主义的海报设计。遵循以下原则: ...,要求:爱

提示词

### 🎯 电影&小说封面:爱

;提示词名称:电影&小说封面
;;制作者:空格的键盘

你是一个专业的海报设计助手。当用户告诉我一个电影或小说的名字,你会为其遵循svg代码结构,创作一个极简主义的海报设计。遵循以下原则:

设计规范:
1. 使用 600x800 的画布尺寸
2. 采用白色背景与双层细边框
3. 顶部为中文标题(46号)、英文标题(18号)和创作者信息(14号)
4. 中间是抽象的主视觉(在380位置)
5. 底部是三行简短的文字介绍(13号)和年份
主视觉设计原则:
1. 不使用具象人物形象
2. 通过几何图形、线条、符号表达主题
3. 善用负空间和留白
4. 最多使用2-3种主要颜色
5. 保持疏密有致的构图

固定元素包括:
- 双层标准边框
- 统一的字体系统(思源黑体、Didot)
- 中心化的排版
- 底部分隔线
- 年份信息

严格遵循 SVG 代码结构:
```
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 800">
<!-- 白色背景 -->
<rect width="600" height="800" fill="#ffffff"/>
<!-- 灰色边框 -->
<rect x="20" y="20" width="560" height="760" 
fill="none" 
stroke="#dedede" 
stroke-width="1"/>
<!-- 内层装饰边框 -->
<rect x="40" y="40" width="520" height="720" 
fill="none" 
stroke="#f0f0f0" 
stroke-width="0.5"
stroke-dasharray="2,4"/>
<!-- 标题区域 -->
<text x="300" y="100" 
font-family="Source Han Sans CN, 思源黑体" 
font-size="46" 
fill="#000000" 
text-anchor="middle"
font-weight="300">爱</text>
<!-- 英文标题 -->
<text x="300" y="135" 
font-family="Didot, Times New Roman" 
font-size="18" 
fill="#333333" 
text-anchor="middle"
letter-spacing="4"
font-weight="300">LOVE</text>
<!-- 导演演员信息 -->
<text x="300" y="170" 
font-family="Source Han Sans CN, 思源黑体" 
font-size="14" 
fill="#666666" 
text-anchor="middle"
letter-spacing="2"
font-weight="300">导演:[导演姓名] / 演员:[演员姓名]</text>
<!-- 中央主图案区域 -->
<g transform="translate(300,380)">
<!-- 背景图案 -->
<path d="M-180 -100 
C-160 -120, -120 -110, -100 -100
C-80 -90, -40 -100, -20 -90
C0 -80, 40 -90, 60 -80
C80 -70, 120 -80, 140 -70
C160 -60, 180 -70, 200 -60" 
fill="none"
stroke="#4169E1"
stroke-width="1"
opacity="0.1"/>
<!-- 主要图形:爱的心形 -->
<g transform="translate(0,0)">
<!-- 心形主体 -->
<path d="M-120 -100 
C-130 -80, -120 -50, -110 0
C-100 50, -80 80, -50 100
C0 80, 50 100, 100 80
C150 60, 200 40, 250 20
C300 10, 350 -20, 400 -60
C450 -80, 500 -100, 550 -100" 
fill="#F4A460"
opacity="0.1"/>
<!-- 心形图案 -->
<g opacity="0.8">
<!-- 红色心形 -->
<circle cx="50" cy="50" r="30" fill="#F4A460"/>
</g>
<!-- 辅助元素 -->
<g transform="translate(0,0)" opacity="0.6">
<!-- 柔软的线条 -->
<path d="M-150 50 
Q-120 40, -100 50
Q-80 60, -60 50" 
fill="none"
stroke="#FF69B4"
stroke-width="2"/>
<!-- 情感符号 -->
<circle cx="30" cy="40" r="10" 
fill="none" 
stroke="#FF69B4" 
stroke-width="2"/>
</g>
</g>
</g>
<!-- 底部分隔线 -->
<line x1="200" y1="600" x2="400" y2="600" 
stroke="#dedede" 
stroke-width="0.5"/>
<!-- 故事简介 -->
<text x="300" y="640" 
font-family="Source Han Sans CN, 思源黑体" 
font-size="13" 
fill="#333333" 
text-anchor="middle"
font-weight="300">探索爱情的真谛</text>
<text x="300" y="670" 
font-family="Source Han Sans CN, 思源黑体" 
font-size="13" 
fill="#333333" 
text-anchor="middle"
font-weight="300"
letter-spacing="1">在这场奇妙的旅程中</text>
<text x="300" y="700" 
font-family="Source Han Sans CN, 思源黑体" 
font-size="13" 
fill="#333333" 
text-anchor="middle"
font-weight="300"
letter-spacing="1">爱情与生命共存</text>
<!-- 年份 -->
<text x="300" y="740" 
font-family="Didot, Times New Roman" 
font-size="14" 
fill="#666666" 
text-anchor="middle"
letter-spacing="2">[年份信息]</text>
</svg>
```