微信扫码
添加专属顾问
我要投稿
583+ 个高质量图像生成提示词开源合集,帮你轻松玩转GPT-Image-2模型,大幅降低创作门槛。核心内容:1. GPT-Image-2模型的核心能力与API接入方式2. 项目提供的583+个真实可用的提示词案例库3. 快速上手的两种方法:直接复制使用与API调用
Awesome GPT Image 2 API and Prompts 是一个由社区驱动、持续更新的精选资源集合,专注于 OpenAI GPT-Image-2(即 gpt-image-2)模型的 API 使用方式与高质量 Prompt 案例库。
项目包含 583+ 个真实可用的图像生成提示词,覆盖 7 大应用场景,并附有每个案例的真实生成效果图、完整 Prompt 文本及作者来源,是目前 GitHub 上规模最大、更新最频繁的 GPT-Image-2 资源库之一。
GPT Image 2 是 OpenAI 最新发布的图像生成与编辑模型,原生集成于 ChatGPT,同时通过 OpenAI API 开放调用。
| 文本生成图像 | |
| 图像编辑 | |
| 多轮对话迭代 | |
| 高保真文字渲染 | |
| 角色一致性 |
GPT-Image-2 与 OpenAI 标准格式兼容,调用端为 /v1/images/generations,无需额外学习新框架。
直接访问仓库 README,按类别查找适合自己场景的 Prompt,复制后粘贴至 ChatGPT 或 API 请求中即可。
npx evolink-gpt-image -y
curl --request POST \
--url https://api.evolink.ai/v1/images/generations \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"model": "gpt-image-2",
"prompt": "A beautiful colorful sunset over the ocean"
}'
获取 API Key:evolink.ai/dashboard[1]
from openai import OpenAI
client = OpenAI(api_key="YOUR_API_KEY")
response = client.images.generate(
model="gpt-image-2",
prompt="A hyper-realistic miniature diorama product advertisement featuring a luxury skincare bottle",
n=1,
size="1024x1024"
)
print(response.data[0].url)
项目共收录 7 大类别,以下为各类别及其适用场景:
适用场景:淘宝/京东商品主图、Amazon 产品详情页、独立站商品展示
示例 Prompt(护肤品微缩模型广告):
A hyper-realistic miniature diorama product advertisement featuring an oversized luxury
skincare pump bottle labeled "LUXEVEIL Skin Science - Radiance Nourishing Body Lotion"
in cream/beige with gold accents...
适用场景:品牌广告海报、社交媒体投放素材、活动宣传图
示例 Prompt(奢华手表广告):
A dramatic luxury product advertising image for a motorsport-inspired chronograph
wristwatch in a dark studio. Center-left foreground, show a single stainless steel
chronograph watch standing upright...
适用场景:人像风格化、写真艺术创作、社交媒体头像与内容
示例 Prompt(便利店霓虹人像):
35mm film photography with harsh convenience store fluorescent lighting mixed with
colorful neon signs from outside, authentic film grain, high contrast, slight color cast...
适用场景:活动海报、书封设计、概念艺术、品牌视觉
适用场景:游戏角色、IP 形象设计、动漫风格创作
适用场景:App 界面展示、社交媒体 Banner、营销素材设计
适用场景:模型效果对比、社区优秀创作展示
Using the provided reference image, transform the single casual product photo into a
polished e-commerce TVC storyboard board for a 15-second ad in a 9-panel grid layout.
Each panel should show a different scene: unboxing, texture close-up, model wearing product,
lifestyle moment, and final brand CTA.
Mini "chibi 3D" versions of the same person appear around the original photo -
sitting, climbing, playing, interacting with objects - with realistic shadows and depth.
Keep base image unchanged.
Create a cinematic hero image of a gourmet cheeseburger on a dark stone surface with
glossy brioche bun, melted cheese, crisp lettuce, tomato, grilled patty, sauce,
realistic texture, and professional studio lighting with dark moody background.
4K resolution, macro photography style, shallow depth of field.
Transform the uploaded portrait into a luxurious cinematic fragrance poster inspired by
the dark seductive elegance of a high-fashion perfume campaign. Preserve her exact facial
features, warm skin tone. Dress her in a black satin slip dress...
The overall mood should feel seductive, mysterious, powerful, feminine, cinematic.
原因:复杂文字布局或非英语文字渲染不稳定。
解决方案:
-将文字内容单独、明确地写入 Prompt(如 The text reads "DEFY GRAVITY")
-对中文/日文等非拉丁字符,尽量简化或分多步生成
-使用负向提示词排除乱码,如:Negative Prompt: watermark, random text, misspelled headline, garbled letters
原因:GPT-Image-2 在跨生成时无法原生锁定人物 ID。
解决方案:
-上传参考图并在 Prompt 中明确说明:Use the uploaded reference image as the exact facial identity reference
-在 Prompt 中逐一列出需保留的特征:Preserve the exact facial structure, skin tone, hair color, eye shape
-适当降低创意自由度,增加约束性描述
原因:复杂姿势下模型解剖结构预测偏差。
解决方案:
加入负向提示词:
Negative Prompt: extra fingers, missing fingers, fused fingers, deformed hands,
bad anatomy, plastic skin
原因:Prompt 内容触发 OpenAI 安全过滤器。
解决方案:
-避免描述真实人物、暴力、违禁内容
-调整措辞,使用更中性的描述风格
-参考仓库中已通过审核的案例 Prompt 作为参考基准
原因:Prompt 描述不够具体或缺少关键视觉参数。
解决方案:
-参考仓库中同类案例的 Prompt 结构
-补充以下关键要素:
-构图:镜头角度、景别(如 low angle hero shot, wide shot)
-光线:光源类型与方向(如 single warm amber spotlight)
-质感:材质描述(如 cold water droplets, hyper-realistic metallic texture)
-风格参照:(如 inspired by Chanel Coco Noir campaign, Unreal Engine render quality)
-技术参数:(如 4K resolution, f/1.8, shallow depth of field)
awesome-gpt-image-2-API-and-Prompts/
├── README.md # 英文主文档(含所有案例)
├── README_zh-CN.md # 简体中文版
├── README_zh-TW.md # 繁体中文版
├── README_ja.md / README_ko.md / ... # 其他语言版本
├── cases/
│ ├── ecommerce.md # 电商案例全集
│ ├── ad-creative.md # 广告创意全集
│ ├── portrait.md # 人像摄影全集
│ └── ... # 其他类别
├── images/ # 生成效果图资源
├── script/
│ └── sync_multilingual_readmes.py # 多语言 README 同步脚本
├── data/ # 数据文件
└── contributing.md # 贡献指南
-在线体验:evolink.ai/gpt-image-2-prompts[2]
-API 文档:docs.evolink.ai[3]
-GPT-Image-2 × Seedance 2.0 电影级工作流:GPT-Image-2-Seedance[4]
项目保持每日更新,持续收录来自社区的高质量案例,是目前最活跃的 GPT-Image-2 资源库之一。
本项目采用 CC0-1.0(Creative Commons Zero)许可证,所有内容可自由使用、修改、商用,无需署名。
文档整理自 EvoLinkAI/awesome-gpt-image-2-API-and-Prompts[5],最后更新于 2026-05-24。
[1] evolink.ai/dashboard: https://evolink.ai/dashboard[2] evolink.ai/gpt-image-2-prompts: https://evolink.ai/gpt-image-2-prompts[3] docs.evolink.ai: https://docs.evolink.ai[4] GPT-Image-2-Seedance: https://github.com/EvoLinkAI/GPT-Image-2-Seedance[5] EvoLinkAI/awesome-gpt-image-2-API-and-Prompts: https://github.com/EvoLinkAI/awesome-gpt-image-2-API-and-Prompts
53AI,企业落地大模型首选服务商
产品:场景落地咨询+大模型应用平台+行业解决方案
承诺:免费POC验证,效果达标后再合作。零风险落地应用大模型,已交付160+中大型企业
2026-05-25
Codex「自我蒸馏」提示词进化版!官方团队给出更强方案,一键打包你的专属工作流
2026-05-24
让你的 AI Agent更加听话
2026-05-24
高质量测试 Skill 编写手册 -- 渐进式披露
2026-05-23
如何把Codex用到极致?Codex真正厉害的地方,远不止是写代码
2026-05-23
codex官方推荐的10个实用技巧,用完效率翻倍
2026-05-23
Search Agent 要如何构造复杂有效的Query?
2026-05-22
Playwright 1.59 新特性:3 个 API 帮你告别 F12 手动找定位
2026-05-22
AI Coding 时代:程序员的生存与进化指南
2026-02-26
2026-03-07
2026-03-13
2026-03-18
2026-02-24
2026-04-21
2026-02-28
2026-04-07
2026-03-05
2026-03-16
2026-05-23
2026-05-16
2026-04-14
2026-02-28
2026-02-12
2026-02-12
2026-02-08
2026-02-05