底层原理类比: 可以把提示词想象成'导演给演员的剧本'。以前的 AI 只能看懂'台词片段',现在它能理解'场景描述 + 角色动作 + 情绪氛围'整套指令。
3.2 商业设计常用提示词模板
别再从零开始写了!整理了几类高频设计场景的'万能公式',直接套用就能出效果。
品牌 Logo 设计
[品牌类型] logo for [行业], [风格关键词], [颜色要求], centered composition, vector style, high contrast, no background
示例:
Minimalist logo for a sustainable fashion brand, Scandinavian style, earth tones, centered composition, vector style, high contrast, no background
海报/Social Media 图
[主题] poster, [艺术风格], [主色调], [构图方式], professional photography, sharp focus, 8k
示例:
Summer music festival poster, retro vaporwave style, pink and purple gradient, dynamic diagonal composition, professional photography, sharp focus, 8k
产品概念图
Concept art of [产品名称], [功能特点], [使用场景], futuristic design, studio lighting, product render
示例:
Concept art of smart glasses, augmented reality display, urban street setting, futuristic design, studio lighting, product render
3.3 高级技巧:负向提示词与权重控制
负向提示词(Negative Prompt)
这是防止 AI'发疯'的保险绳。常见要排除的内容:
blurry, low quality, distorted face, extra limbs, watermark, text artifacts, bad anatomy, ugly, cartoonish
特别是做商业图时,一定要加上 text artifacts,避免 AI 乱造不存在的品牌名。
权重强调语法
用括号调整关键词重要性:
(word:1.3) → 加强权重
[word] → 降低权重
BREAK → 分隔语义块
示例:
(ahighlydetailedlogoforatechstartup:1.4), [BREAK], futuristicdesign, (blue and silver color scheme:1.3), notext, cleanlines
这个提示词会让 AI 更重视'科技感'和'蓝银配色',同时弱化其他元素。
3.4 团队协作中的提示词标准化
建议设计团队建立自己的'提示词库',统一命名规范,比如:
类型
前缀
示例
Logo
[LOGO]
[LOGO] eco-friendly skincare, minimalist, green
海报
[POSTER]
[POSTER] autumn sale, warm colors, diagonal layout
UI
[UI]
[UI] mobile banking app, dark mode, neumorphism
这样做有几个好处:
新人快速上手
方便搜索历史记录
可导出为团队知识资产
4. 实战案例:从客户需求到成图交付
光讲理论不够直观,模拟一个真实项目流程,看看 SD3.5 如何融入设计工作室的日常工作。
4.1 项目背景:咖啡馆品牌升级
客户是一家连锁咖啡馆,希望更新品牌形象,要求:
风格:温暖、自然、有手作感
主色调:大地色系(棕、米、绿)
元素:咖啡豆、树叶、手写字体
用途:菜单、包装、社交媒体
传统做法需要设计师花几天时间手绘草图 + 排版,现在用 AI 加速。
4.2 第一阶段:创意探索(使用 Turbo)
目标:1 小时内产出 10 种风格方向供客户选择。
操作流程:
在云端启动 SD3.5 Large Turbo 实例
准备一组基础提示词变体:
[1] Hand-drawn style logo for a coffee shop, featuring coffee beans and leaves, warm brown and green colors, hand-lettered typography, cozy atmosphere
[2] Watercolor illustration of a coffee cup with steam forming into tree shapes, earth tone palette, soft edges, artistic
[3] Minimalist packaging design for organic coffee, kraft paper texture, simple line art of coffee plant, elegant typography
使用脚本批量生成(Python + Diffusers):
import torch
from diffusers import StableDiffusion3Pipeline
from PIL import Image
pipe = StableDiffusion3Pipeline.from_pretrained(
"stabilityai/stable-diffusion-3.5-large-turbo",
torch_dtype=torch.float16
)
pipe.to("cuda")
prompts = [
"Hand-drawn style logo for a coffee shop...",
"Watercolor illustration of a coffee cup...",
"Minimalist packaging design..."
]
for i, prompt inenumerate(prompts):
image = pipe(
prompt=prompt,
num_inference_steps=4,
guidance_scale=5.0,
height=768,
width=768
).images[0]
image.save(f"concept_{i+1}.png")