├── .github └── ISSUE_TEMPLATE │ ├── add_new_example.yml │ └── add_new_example_en.yml ├── CONTRIBUTING.md ├── README.md ├── README_en.md ├── examples ├── example_35mm_moscow_flying_island.jpeg ├── example_3d_collectible_couple_box.jpeg ├── example_3d_q_snowglobe_couple.jpeg ├── example_8bit_pixel_burger.jpeg ├── example_Ultra_realistic_3D_game.jpg ├── example_almanac_calendar_illustration.jpeg ├── example_art_figures_go.jpeg.jpeg ├── example_chibi_emoji_pack.png ├── example_chinese_wedding_invitation.jpeg ├── example_cloud_art_dragon_great_wall.png ├── example_digimon_style.jpeg ├── example_einstein_stickfigure_emoji.jpeg ├── example_emoji_cushion_pleading.jpeg ├── example_enamel_pins_pop_culture.jpeg ├── example_esc_keycap_diorama.jpeg ├── example_fake_tweet_einstein.jpeg ├── example_family_wedding_photo_q.jpeg ├── example_fantasy_computer_head_portal.jpeg ├── example_fashion_design_cover.jpeg ├── example_flat_sticker_pearl_earring.jpeg ├── example_fluffy_pumpkin.jpeg ├── example_food_stickers.jpeg ├── example_gpt_involution_poster.png ├── example_hand_drawn_infographic.jpeg ├── example_hand_drawn_infographic_cognition.jpeg ├── example_happy_capsule.png ├── example_harry_potter_sorting_hat.jpeg ├── example_ice_cream_emoji_strawberry.png ├── example_lara_croft_card_break.jpeg ├── example_lego_collectible.jpeg ├── example_low_poly_lizard.jpeg ├── example_maga_hat_cartoon.jpeg ├── example_master_oats_ad.png ├── example_matryoshka_pearl_earring.png ├── example_miniature_journey_west.jpeg ├── example_miniature_starbucks_cup_building.jpeg ├── example_minimalist_3d_toilet.png ├── example_minimalist_3d_toilet_txt.jpeg ├── example_naruto_stickers.jpeg ├── example_notebook_promo.png ├── example_one_piece_figure_creation.png ├── example_ordinary_selfie_eason_nicholas.jpeg ├── example_paper_craft_emoji_fire.jpeg ├── example_paper_cutout_job_ad.jpeg ├── example_passport_stamp_beijing.jpeg ├── example_passport_stamp_rome.jpeg ├── example_pearl_earring_balloon.jpeg ├── example_pearl_earring_ootd.png ├── example_personalized_room.png ├── example_photo_to_3d_q.png ├── example_polaroid_breakout.png ├── example_portal_crossing_handhold.jpeg ├── example_proposal_scene_q_realistic.jpeg ├── example_ps2_gta_shrek.jpeg ├── example_pudding_slot.jpeg ├── example_q_chinese_wedding.jpeg ├── example_relativity_manga.jpeg ├── example_rpg_card_designer.png ├── example_silk_creation_universe.jpg ├── example_social_media_doodle.jpeg ├── example_steampunk_fish.jpg ├── example_textbook_redraw.jpeg ├── example_titanic_q_realistic.jpeg ├── example_trading_card_logo_tesla.png ├── example_tromple-I-3d-art.jpg ├── example_tufted_rug_dino_emoji.jpeg ├── example_two_panel_manga_president.jpeg ├── example_university_mascot_npu.jpeg ├── example_vector_poster_london.png ├── example_vintage_poster.jpeg ├── example_voxel_icons.jpeg └── funko-pop-james-bond-figure-and-box.png ├── references └── Meisje_met_de_parel.jpg └── template.md /.github/ISSUE_TEMPLATE/add_new_example.yml: -------------------------------------------------------------------------------- 1 | name: "提交新 GPT‑4o 图片案例 ✨" 2 | description: 分享您发现的精彩 GPT-4o 图片案例及其提示词,帮助我们丰富案例库!维护者会协助整理收录。 3 | title: "新案例:<请为新案例起一个简短描述性标题,例如:纸艺风格 Emoji>" 4 | labels: ["contribution", "image"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | **感谢您分享精彩案例!请尽可能详细地填写以下信息,方便我们收录 👇** 10 | 11 | - type: textarea 12 | id: preview_image 13 | attributes: 14 | label: 请上传或粘贴案例图片 15 | description: 拖拽或粘贴图片到此处(建议 ≤1 MB) 16 | placeholder: "将图片文件拖拽到此处或粘贴截图" 17 | validations: 18 | required: true 19 | 20 | - type: input 21 | id: source_link 22 | attributes: 23 | label: 案例来源链接 24 | description: 分享该案例的原帖链接(如推文、博客文章等),用于溯源和致谢。 25 | placeholder: "https://x.com/xxxx/status/123..." 26 | validations: 27 | required: true 28 | 29 | - type: input 30 | id: author_link 31 | attributes: 32 | label: 原作者主页链接 33 | description: 分享该案例的原作者个人主页(如 Twitter/X、GitHub、个人网站等) 34 | placeholder: "https://x.com/xxxx" 35 | validations: 36 | required: true 37 | 38 | - type: textarea 39 | id: prompt_cn 40 | attributes: 41 | label: 提示词(中文) 42 | description: 完整中文提示词。最好分别提供中/英文提示词,也可选择其中一种填写(填写一样的即可) 43 | placeholder: "例如:将图标[🥹]变成充气感靠垫..." 44 | validations: 45 | required: true 46 | 47 | - type: textarea 48 | id: prompt_en 49 | attributes: 50 | label: Prompt (English) 51 | description: 完整英文提示词。最好分别提供中/英文提示词,也可选择其中一种填写(填写一样的即可) 52 | placeholder: "e.g. Create a paper craft-style '🔥'..." 53 | validations: 54 | required: true 55 | 56 | - type: input 57 | id: prompt_note 58 | attributes: 59 | label: 提示词备注(可选) 60 | description: 关于提示词的额外说明,例如:可替换【括号内】内容。 61 | placeholder: "例如:提示词中的【XXX】部分可以替换" 62 | validations: 63 | required: false 64 | 65 | - type: input 66 | id: need_reference 67 | attributes: 68 | label: 所需参考图说明 (可选) 69 | description: 如果生成此图需要 **上传参考图片**,请在此说明需要的图片类型(例如:一张单人头像照片)或提供参考图来源。 70 | placeholder: "例如:需要上传一张人物照片" 71 | validations: 72 | required: false 73 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add_new_example_en.yml: -------------------------------------------------------------------------------- 1 | name: "Submit New GPT-4o Image Example ✨" 2 | description: "Share an awesome GPT-4o image example and its prompt you found to help enrich our collection! Maintainers will assist in organizing and adding it." 3 | title: "New Example: " 4 | labels: ["contribution", "image"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | **Thank you for sharing an awesome example! Please fill out the following information as detailed as possible to help us add it 👇** 10 | 11 | - type: textarea 12 | id: preview_image 13 | attributes: 14 | label: Please upload or paste the example image 15 | description: "Drag & drop or paste the image here (Recommended ≤1 MB)" 16 | placeholder: "Drag & drop image file here or paste screenshot" 17 | validations: 18 | required: true 19 | 20 | - type: input 21 | id: source_link 22 | attributes: 23 | label: Example Source Link 24 | description: "Share the link to the original post (e.g., tweet, blog post, etc.) for attribution and reference." 25 | placeholder: "https://x.com/xxxx/status/123..." 26 | validations: 27 | required: true 28 | 29 | - type: input 30 | id: author_link 31 | attributes: 32 | label: Original Author Profile Link 33 | description: "Share the original author's profile page (e.g., Twitter/X, GitHub, personal website, etc.)" 34 | placeholder: "https://x.com/xxxx" 35 | validations: 36 | required: true 37 | 38 | - type: textarea 39 | id: prompt_cn 40 | attributes: 41 | label: Prompt (Chinese) 42 | description: "The full Chinese prompt. It's best to provide both Chinese/English prompts if available, but filling in just one is acceptable (just fill in the same if applicable)." # Retained your description logic 43 | placeholder: "e.g., 将图标[🥹]变成充气感靠垫..." # Example kept in Chinese as per field 44 | validations: 45 | required: true 46 | 47 | - type: textarea 48 | id: prompt_en 49 | attributes: 50 | label: Prompt (English) 51 | description: "The full English prompt. It's best to provide both Chinese/English prompts if available, but filling in just one is acceptable (just fill in the same if applicable)." # Retained your description logic 52 | placeholder: "e.g. Create a paper craft-style '🔥'..." 53 | validations: 54 | required: true 55 | 56 | - type: input 57 | id: prompt_note 58 | attributes: 59 | label: Prompt Notes (Optional) 60 | description: "Any additional notes about the prompt, e.g., 'Content inside 【brackets】 can be replaced.'" 61 | placeholder: "e.g., The 【XXX】 part in the prompt can be replaced" 62 | validations: 63 | required: false 64 | 65 | - type: input 66 | id: need_reference 67 | attributes: 68 | label: Reference Image Description (Optional) 69 | description: "If generating this image requires **uploading a reference image**, please describe the type needed (e.g., a single person portrait photo) or provide its source here." 70 | placeholder: "e.g., Needs a photo of a person" 71 | validations: 72 | required: false -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # 如何贡献 2 | 3 | 您可以通过以下两种主要方式来贡献. 4 | 5 | There are two main ways you can contribute. 6 | 7 | ## 方式一:通过 GitHub Issue 快速提交 8 | 9 | 如果您想快速分享一个案例,或者不太熟悉 Pull Request 流程,可以通过 Issue 提交。我们将在案例 10 | 11 | ➡️ 点击这里使用模板提交新案例:[提交新案例](https://github.com/jamez-bondos/awesome-gpt4o-images/issues/new?template=add_new_example.yml) 12 | 13 | 14 | ## Option 1: Quick Submit via GitHub Issue 15 | 16 | If you want to quickly share an example, or if you're less familiar with the Pull Request process, submitting via an Issue is a great option. 17 | 18 | ➡️ Click here to submit a new example using the template: [Submit New Example](https://github.com/jamez-bondos/awesome-gpt4o-images/issues/new?template=add_new_example_en.yml) 19 | 20 | --- 21 | 22 | 23 | ## 方式二:通过 Pull Request (PR) 贡献 24 | 25 | 1. Clone仓库并在创建本地分支 26 | 27 | 2. **添加新案例:** 28 | * 请参考我们的 [**案例模板**](./template.md) 来准备内容。 29 | * **准备图片文件:** 30 | * 请为图片起一个描述性强且不易重复的文件名(例如:`q-version-matryoshka-dolls.jpeg`)。 31 | * 将图片文件放置在项目根目录下的 `./examples/` 文件夹内。 32 | * **图片要求:** 建议宽度在 300px 到 2000px 之间;推荐使用 JPEG、WebP 或 PNG 格式;文件大小请尽量控制在 1MB 以内(如需,请先进行压缩)。 33 | * **编写案例 Markdown:** 34 | * 根据案例模板的要求,填写或修改案例的详细信息。 35 | * 确保在 Markdown 中正确引用了您的图片文件名。 36 | * 请务必提供案例的 **原文链接** (Source URL) 和 **原作者链接/用户名** (Author)。 37 | * **语言:** 您只需将案例添加到 **一个** README 文件中即可(中文 `README.md` **或** 英文 `README_en.md`)。维护者在合并时会负责同步到另一个语言版本。 38 | * **案例编号:** 您无需指定案例编号,将由维护者在合并时统一分配和排序。 39 | 40 | 3. 提交更改并在 GitHub 发起 Pull Request。 41 | 42 | 4. 等待维护者进行审查和合并 43 | 44 | ## Option 2: Contribute via Pull Request (PR) 45 | 46 | 1. Clone the repository and create a local branch 47 | 48 | 2. **Add New Example:** 49 | * Please refer to our [**Example Template**](./template.md) to prepare the content. 50 | * **Prepare the Image File:** 51 | * Please use a descriptive and unique filename for the image (e.g., `q-version-matryoshka-dolls.jpeg`). 52 | * Place the image file in the `./examples/` directory at the project root. 53 | * **Image Requirements:** Recommended width between 300px and 2000px; recommended formats are JPEG, WebP, or PNG; please try to keep the file size under 1MB (compress if necessary). 54 | * **Write the Example Markdown:** 55 | * Fill out or modify the example details according to the template requirements. 56 | * Ensure you correctly reference your image filename in the Markdown. 57 | * Please be sure to provide the **Source URL** and the **Original Author link/username**. 58 | * **Language:** You only need to add the example to **one** README file (Chinese `README.md` **or** English `README_en.md`). Maintainers will handle syncing it to the other language version upon merging. 59 | * **Case Number:** You do not need to assign a case number; maintainers will assign and sort them when merging. 60 | 61 | 3. Commit changes and create a Pull Request on GitHub. 62 | 63 | 4. Wait for maintainers to review and merge 64 | 65 | --- 66 | 67 | 感谢你您的贡献! 68 | 69 | Thank you for your contribution! -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Awesome GPT-4o Images ✨ 3 | 4 | [![English](https://img.shields.io/badge/English-Click-yellow)](README_en.md) 5 | [![简体中文](https://img.shields.io/badge/简体中文-点击查看-orange)](README.md) 6 | 7 | GitHub stars 8 | 9 | 10 | 🎉 欢迎来到 GPT‑4o 图片精选! 11 | 12 | 这里收集了 OpenAI 最新多模态模型 GPT‑4o 生成图片的精彩案例和提示词。 13 | 14 | 案例主要来源于 Twitter/X 🐦,希望这些案例能为您带来启发 💡,为你的灵感加速 🚀。 15 | 16 | → 喜欢就点 Star 支持! / Smash that ⭐ if you like it! 17 | 18 | --- 19 | 20 | 21 | ## 目录 22 | 23 | - [🎨 GPT‑4o介绍](#gpt4o-toc) 24 | - [📖 案例目录](#example-toc) 25 | - [🛠️ 工具介绍](#tools-toc) 26 | - [💡 提示词技巧](#prompting-toc) 27 | - [🤝 如何贡献](#contribute-toc) 28 | - [🙏 致谢](#acknowledgements-toc) 29 | - [🌟 Star历史](#starhistory-toc) 30 | 31 | 32 | ## 🎨 GPT‑4o介绍 33 | 34 | GPT‑4o 是 OpenAI 最新的多模态大模型,既能以文本提示一键生成高质量图片,也支持图生图编辑,涵盖局部修改、风格转换及多图融合等高级操作。 35 | 36 | - 🧠 多模态:同时解析文本、图像,精准把握创作意图 37 | - ✍️ 精准出图:支持复杂提示词,快速生成高质量图像 38 | - 🎨 多样风格:吉卜力、厚涂、像素、3D 毛绒等任你选 39 | - 🖼️ 真实构图:空间、透视、光影自然可信 40 | - ✏️ 易于再编辑:替换背景、改细节,二次创作无压力 41 | - ⚡️ 极速交互:响应更快,适合实时创意迭代 42 | 43 | 44 | 45 | ## 📖 案例目录 46 | 47 | * [案例 68:未来主义 Logo 交易卡 (by @hewarsaber)](#案例-68未来主义-logo-交易卡-by-hewarsaber) 48 | * [案例 67:超写实3D游戏 (by @ZHO_ZHO_ZHO)](#案例-67超写实3d游戏-by-zho_zho_zho) 49 | * [案例 66:创意丝绸宇宙 (by @ZHO_ZHO_ZHO)](#案例-66创意丝绸宇宙-by-zho_zho_zho) 50 | * [案例 65:Trompe-l'œil 三维空间艺术 (by @madpencil_)](#案例-65trompe-lœil-三维空间艺术-by-madpencil_) 51 | * [案例 64:蒸汽朋克机械鱼 (by @f-is-h)](#案例-64蒸汽朋克机械鱼-by-f-is-h) 52 | * [案例 63:Emoji 奶油雪糕 (by @ZHO_ZHO_ZHO)](#案例-63emoji-奶油雪糕-by-zho_zho_zho) 53 | * [案例 62:可爱珐琅别针 (by @gnrlyxyz)](#案例-62可爱珐琅别针-by-gnrlyxyz) 54 | * [案例 61:虚构推文截图 (爱因斯坦) (by @egeberkina)](#案例-61虚构推文截图-爱因斯坦-by-egeberkina) 55 | * [案例 60:Emoji 簇绒地毯 (by @gizakdag)](#案例-60emoji-簇绒地毯-by-gizakdag) 56 | * [案例 59:彩色矢量艺术海报 (by @michaelrabone)](#案例-59彩色矢量艺术海报-by-michaelrabone) 57 | * [案例 58:云彩艺术 (by @umesh_ai)](#案例-58云彩艺术-by-umesh_ai) 58 | * [案例 57:8位像素图标 (by @egeberkina)](#案例-578位像素图标-by-egeberkina) 59 | * [案例 56:迷你 3D 建筑 (by @dotey)](#案例-56迷你-3d-建筑-by-dotey) 60 | * [案例 55:低多边形 (Low-Poly) 3D 渲染 (by @azed_ai)](#案例-55低多边形-low-poly-3d-渲染-by-azed_ai) 61 | * [案例 54:“极其平凡”的iPhone自拍 (by @jiamimaodashu)](#案例-54极其平凡的iphone自拍-by-jiamimaodashu) 62 | * [案例 53:Emoji 充气感靠垫 (by @gizakdag)](#案例-53emoji-充气感靠垫-by-gizakdag) 63 | * [案例 52:纸艺风格 Emoji 图标 (by @egeberkina)](#案例-52纸艺风格-emoji-图标-by-egeberkina) 64 | * [案例 51:护照入境印章 (by @ZHO_ZHO_ZHO)](#案例-51护照入境印章-by-zho_zho_zho) 65 | * [案例 50:物理破坏效果卡片 (劳拉) (by @op7418)](#案例-50物理破坏效果卡片-劳拉-by-op7418) 66 | * [案例 49:时尚杂志封面风格 (by @dotey)](#案例-49时尚杂志封面风格-by-dotey) 67 | * [案例 48:体素风格 3D 图标转换 (by @BrettFromDJ)](#案例-48体素风格-3d-图标转换-by-brettfromdj) 68 | * [案例 47:键盘ESC 键帽微型立体模型 (by @egeberkina)](#案例-47键盘esc-键帽微型立体模型-by-egeberkina) 69 | * [案例 46:快乐胶囊制作 (by @ZHO_ZHO_ZHO)](#案例-46快乐胶囊制作-by-zho_zho_zho) 70 | * [案例 45:3D Q版大学拟人化形象 (by @dotey)](#案例-453d-q版大学拟人化形象-by-dotey) 71 | * [案例 44:RPG 风格角色卡片制作 (by @berryxia_ai)](#案例-44rpg-风格角色卡片制作-by-berryxia_ai) 72 | * [案例 43:Q版可爱俄罗斯套娃 (戴珍珠耳环的少女) (by @ZHO_ZHO_ZHO)](#案例-43q版可爱俄罗斯套娃-戴珍珠耳环的少女-by-zho_zho_zho) 73 | * [案例 42:3D Q版情侣水晶球 (by @balconychy)](#案例-423d-q版情侣水晶球-by-balconychy) 74 | * [案例 41:微型立体场景 (孙悟空三打白骨精) (by @dotey)](#案例-41微型立体场景-孙悟空三打白骨精-by-dotey) 75 | * [案例 40:日系双格漫画 (少女总统红温了) (by @hellokaton)](#案例-40日系双格漫画-少女总统红温了-by-hellokaton) 76 | * [案例 39:卡通插画 (by @dotey)](#案例-39卡通插画-by-dotey) 77 | * [案例 38:手绘信息图卡片 (by @dotey)](#案例-38手绘信息图卡片-by-dotey) 78 | * [案例 37:社交媒体帖子涂鸦 (by @op7418)](#案例-37社交媒体帖子涂鸦-by-op7418) 79 | * [案例 36:极简主义 3D 插画 (文字版) (by @dotey)](#案例-36极简主义-3d-插画-文字版-by-dotey) 80 | * [案例 35:毛茸茸南瓜灯 (by gizakdag)](#案例-35毛茸茸南瓜灯-by-gizakdag) 81 | * [案例 34:手绘信息图卡片 (by @dotey)](#案例-34手绘信息图卡片-by-dotey) 82 | * [案例 33:全家福婚纱照 (by @balconychy)](#案例-33全家福婚纱照-by-balconychy) 83 | * [案例 32:纸艺剪贴风格招聘广告 (by @dotey)](#案例-32纸艺剪贴风格招聘广告-by-dotey) 84 | * [案例 31:动漫贴纸集合 (by @richardchang)](#案例-31动漫贴纸集合-by-richardchang) 85 | * [案例 30:35mm 胶片风格飞岛 (by @dotey)](#案例-3035mm-胶片风格飞岛-by-dotey) 86 | * [案例 29:名画人物 OOTD (by @ZHO_ZHO_ZHO)](#案例-29名画人物-ootd-by-zho_zho_zho) 87 | * [案例 28:扁平贴纸设计 (by @ZHO_ZHO_ZHO)](#案例-28扁平贴纸设计-by-zho_zho_zho) 88 | * [案例 27:Q 版表情包制作 (by @dotey)](#案例-27q-版表情包制作-by-dotey) 89 | * [案例 26:名画人物麦片广告 (by @ZHO_ZHO_ZHO)](#案例-26名画人物麦片广告-by-zho_zho_zho) 90 | * [案例 25:极简主义 3D 插画 (by @0xdlk)](#案例-25极简主义-3d-插画-by-0xdlk) 91 | * [案例 24:Funko Pop 公仔制作 (by @dotey)](#案例-24funko-pop-公仔制作-by-dotey) 92 | * [案例 23:《泰坦尼克号》模仿 (by @balconychy)](#案例-23泰坦尼克号模仿-by-balconychy) 93 | * [案例 22:小红书封面 (by @balconychy)](#案例-22小红书封面-by-balconychy) 94 | * [案例 21:简笔画表情包 (by @ZHO_ZHO_ZHO)](#案例-21简笔画表情包-by-zho_zho_zho) 95 | * [案例 20:四格漫画 (相对论) (by @dotey)](#案例-20四格漫画-相对论-by-dotey) 96 | * [案例 19:语文课本重绘 (by @balconychy)](#案例-19语文课本重绘-by-balconychy) 97 | * [案例 18:皮克斯3D风格 (by AnimeAI)](#案例-18皮克斯3d风格-by-animeai) 98 | * [案例 17:数码宝贝风格图 (by @ZHO_ZHO_ZHO)](#案例-17数码宝贝风格图-by-zho_zho_zho) 99 | * [案例 16:布丁老虎机 (by @ZHO_ZHO_ZHO)](#案例-16布丁老虎机-by-zho_zho_zho) 100 | * [案例 15:讽刺海报生成 (by @ZHO_ZHO_ZHO)](#案例-15讽刺海报生成-by-zho_zho_zho) 101 | * [案例 14:《海贼王》主题手办制作 (by @dotey)](#案例-14海贼王主题手办制作-by-dotey) 102 | * [案例 13:3D Q版风格 (by @dotey)](#案例-133d-q版风格-by-dotey) 103 | * [案例 12:3D 情侣珠宝盒摆件 (by @dotey)](#案例-123d-情侣珠宝盒摆件-by-dotey) 104 | * [案例 11:PS2 游戏封面 (GTA x Shrek) (by @dotey)](#案例-11ps2-游戏封面-gta-x-shrek-by-dotey) 105 | * [案例 10:讽刺漫画生成 (by @dotey)](#案例-10讽刺漫画生成-by-dotey) 106 | * [案例 9:气球名画 (by @ZHO_ZHO_ZHO)](#案例-9气球名画-by-zho_zho_zho) 107 | * [案例 8:乐高收藏品 (by @ZHO_ZHO_ZHO)](#案例-8乐高收藏品-by-zho_zho_zho) 108 | * [案例 7:个性化房间设计 (by @ZHO_ZHO_ZHO)](#案例-7个性化房间设计-by-zho_zho_zho) 109 | * [案例 6:角色穿越传送门 (by @dotey)](#案例-6角色穿越传送门-by-dotey) 110 | * [案例 5:吉卜力风格 (by AnimeAI)](#案例-5吉卜力风格-by-animeai) 111 | * [案例 4:Q 版中式婚礼图 (by @balconychy)](#案例-4q-版中式婚礼图-by-balconychy) 112 | * [案例 3:复古宣传海报 (by @dotey)](#案例-3复古宣传海报-by-dotey) 113 | * [案例 2:立体相框 (by @dotey)](#案例-2立体相框-by-dotey) 114 | * [案例 1:Q版求婚场景 (by @balconychy)](#案例-1q版求婚场景-by-balconychy) 115 | 116 | --- 117 | 118 | ## 案例 68:未来主义 Logo 交易卡 (by [@hewarsaber](https://x.com/hewarsaber)) 119 | 120 | [原文链接](https://x.com/hewarsaber/status/1912933875166171515) 121 | 122 | 未来主义风格的特斯拉 Logo 交易卡 123 | 124 | **提示词:** 125 | ``` 126 | { 127 | "prompt": "A futuristic trading card with a dark, moody neon aesthetic and soft sci-fi lighting. The card features a semi-transparent, rounded rectangle with slightly muted glowing edges, appearing as if made of holographic glass. At the center is a large glowing logo of {{logo}}, with no additional text or label, illuminated with a smooth gradient of {{colors}}, but not overly bright. The reflections on the card surface should be subtle, with a slight glossy finish catching ambient light. The background is a dark carbon fiber texture or deep gradient with soft ambient glows bleeding into the edges. Add subtle light rays streaming down diagonally from the top, giving the scene a soft cinematic glow. Apply light motion blur to the edges and reflections to give the scene a sense of depth and energy, as if it's part of a high-end tech animation still. Below the card, include realistic floor reflections that mirror the neon edges and logo—slightly diffused for a grounded, futuristic look. Text elements are minimal and softly lit: top-left shows '{{ticker}}', top-right has a stylized signature, and the bottom displays '{{company_name}}' with a serial number '{{card_number}}', a revenue badge reading '{{revenue}}', and the year '{{year}}'. Typography should have a faint glow with slight blurring, and all elements should feel premium, elegant, and softly illuminated—like a high-end cyberpunk collectible card.", 128 | "style": { 129 | "lighting": "Neon glow, soft reflections", 130 | "font": "Modern sans-serif, clean and minimal", 131 | "layout": "Centered, structured like a digital collectible card", 132 | "materials": "Glass, holographic plastic, glowing metal edges" 133 | }, 134 | "parameters": { 135 | "logo": "Tesla logo", 136 | "ticker": "TSLA", 137 | "company_name": "Tesla Inc.", 138 | "card_number": "#0006", 139 | "revenue": "$96.8B", 140 | "year": "2025", 141 | "colors": [ 142 | "red", 143 | "white", 144 | "dark gray" 145 | ] 146 | }, 147 | "medium": "3D render, high-resolution digital art", 148 | "size": "1080px by 1080px" 149 | } 150 | ``` 151 | 152 | *注意:提示词采用类 JSON 结构描述卡片元素。可修改 `parameters` 对象中的值(如 logo, ticker, company_name, colors 等)来自定义卡片。对于自定义 Logo,需在 `parameters.logo` 中注明(例如:"Framer logo (attached image)")并上传图片。本提示词为结构化JSON,保持英文。* 153 | 154 | **需上传参考图片:** (可选)上传自定义 Logo 图片。 155 | 156 | [⬆️ 返回案例目录](#example-toc) 157 | 158 | 159 | ## 案例 67:超写实3D游戏 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO) ) 160 | 161 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1913648013144137840) 162 | 163 | 超写实3D游戏 164 | 165 | **提示词:** 166 | ``` 167 | 超写实的 3D 渲染画面,重现了2008年《命令与征服:红色警戒3》中娜塔莎的角色设计,完全依照原版建模。场景设定在一个昏暗杂乱的2008年代卧室里,角色正坐在地毯上,面对一台正在播放《命令与征服:红色警戒3》的老式电视和游戏机手柄。 168 | 169 | 整个房间充满了2008年代的怀旧氛围:零食包装袋、汽水罐、海报以及纠缠在一起的电线。娜塔莎·沃尔科娃在画面中被抓拍到转头的一瞬,回眸看向镜头,她那标志性的空灵美丽面容上带着一抹纯真的微笑。她的上半身微微扭转,动态自然,仿佛刚刚被闪光灯惊到而做出的反应。 170 | 171 | 闪光灯轻微地过曝了她的脸和衣服,使她的轮廓在昏暗的房间中更加突出。整张照片显得原始而自然,强烈的明暗对比在她身后投下深邃的阴影,画面充满触感,带有一种真实的2008年胶片快照的模拟质感。 172 | ``` 173 | 174 | **案例提交:** [wowmarcomei](https://github.com/wowmarcomei) 175 | 176 | [⬆️ 返回案例目录](#example-toc) 177 | 178 | 179 | ## 案例 66:创意丝绸宇宙 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO) ) 180 | 181 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1914864217867608175) 182 | 183 | 创意丝绸宇宙 184 | 185 | **提示词:** 186 | ``` 187 | 将 ❄️ 变成一个柔软的 3D 丝绸质感物体。整个物体表面包裹着顺滑流动的丝绸面料,带有超现实的褶皱细节、柔和的高光与阴影。该物体轻轻漂浮在干净的浅灰色背景中央,营造出轻盈优雅的氛围。整体风格超现实、触感十足且现代,传递出舒适与精致趣味的感觉。工作室灯光,高分辨率渲染。 188 | ``` 189 | *注意:可替换提示词中的【❄️】替换为你的目标值。* 190 | 191 | **案例提交:** [wowmarcomei](https://github.com/wowmarcomei) 192 | 193 | [⬆️ 返回案例目录](#example-toc) 194 | 195 | 196 | ## 案例 65:Trompe-l'œil 三维空间艺术 (by [@madpencil_](https://x.com/madpencil_) ) 197 | 198 | [原文链接](https://x.com/madpencil_/status/1915099250079469907) 199 | 200 | 人物从屏幕中“走出”的三维错觉 201 | 202 | **提示词:** 203 | ``` 204 | 一幅视错觉风格的画面:人物A[主题/着装]从显示着xyz社交媒体界面的大屏幕中迈步而出。屏幕上可见用户名为“@”,显示1千次点赞、12-20条评论,周围漂浮着[爱心眼、笑脸]表情符号,背景可根据您的喜好自定义。 205 | ``` 206 | *注意:可替换提示词中的【主题/着装】与[爱心眼、笑脸]。* 207 | 208 | **案例提交:** [wowmarcomei](https://github.com/wowmarcomei) 209 | 210 | [⬆️ 返回案例目录](#example-toc) 211 | 212 | 213 | ## 案例 64:蒸汽朋克机械鱼 (by [@f-is-h](https://github.com/f-is-h)) 214 | 215 | [原文链接](https://github.com/f-is-h/f-is-h/blob/main/images/streampank-fish-4.png) 216 | 217 | 蒸汽朋克风格的机械鱼,黄铜材质,带有机械齿轮结构和多面红宝石眼睛 218 | 219 | **提示词:** 220 | ``` 221 | 一个蒸汽朋克风格的机械鱼,身体为黄铜风格,可以清楚的看到其动作时的机械齿轮结构。 222 | 能略微看到它的机械牙齿,整齐并且紧闭,上下牙齿都可以看到。每颗牙齿均呈三角状,材质为金刚石。 223 | 尾鳍为金属丝编织结构,其它部分的鱼鳍是半透明的琥珀色玻璃,其中有一些不太明显的气泡。 224 | 眼睛是多面红宝石,能清晰的看到它反射出来的光泽。 225 | 鱼有身上能清晰的看到"f-is-h"字样,其中字母全部为小写,并且注意横线位置。 226 | 图片是正方形的,整个画面中可以看到鱼的全身,在画面正中,鱼头向右,并且有一定的留白画面并不局促,画面的左右留出更多的空间。背景中有淡淡的蒸汽朋克风的齿轮纹理。 227 | 整个鱼看起非常炫酷。这是一张高清图片,整张照片的细节非常丰富,并且有独特的质感与美感。画面不要太暗。 228 | ``` 229 | 230 | *注意:此图片展示了蒸汽朋克风格与金属材质的精美结合,呈现出精致的机械感和复古未来主义风格。* 231 | 232 | [⬆️ 返回案例目录](#example-toc) 233 | 234 | 235 | ## 案例 63:Emoji 奶油雪糕 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 236 | 237 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1914574278911000967) 238 | 239 | 草莓形状的奶油雪糕,顶部有奶油漩涡,Q版3D可爱风格 240 | 241 | **提示词:** 242 | ``` 243 | 为我生成:将【🍓】变成变成一根奶油雪糕,奶油在雪糕顶上呈曲线流动状看起来美味可口,45度悬浮在空中,q版 3d 可爱风格,一致色系的纯色背景 244 | ``` 245 | *注意:可替换提示词中的【🍓】为其他 Emoji。* 246 | 247 | [⬆️ 返回案例目录](#example-toc) 248 | 249 | 250 | ## 案例 62:可爱珐琅别针 (by [@gnrlyxyz](https://x.com/gnrlyxyz)) 251 | 252 | [原文链接](https://x.com/gnrlyxyz/status/1914303110853583302) 253 | 254 | 几个流行文化角色的可爱珐琅别针(例如终结者、绝命毒师主角等) 255 | 256 | **提示词:** 257 | ``` 258 | 将附图中的主题变成可爱的珐琅别针。使用光泽的金属轮廓和鲜艳的珐琅填充。无需额外添加任何功能。方形模型格式。白色背景。 259 | ``` 260 | 261 | **需上传参考图片:** 需要上传一张人物或物体的照片作为转换主体。 262 | 263 | **案例提交:** [StevenSong-sTs](https://github.com/StevenSong-sTs) 264 | 265 | [⬆️ 返回案例目录](#example-toc) 266 | 267 | 268 | ## 案例 61:虚构推文截图 (爱因斯坦) (by [@egeberkina](https://x.com/egeberkina)) 269 | 270 | [原文链接](https://x.com/egeberkina/status/1914299716394778713) 271 | 272 | 爱因斯坦发布相对论后的“超现实”推特帖子截图,背景有黑板和公式,显示尼古拉·特斯拉点赞 273 | 274 | **提示词:** 275 | ``` 276 | 一个超现实的推特帖子,由阿尔伯特·爱因斯坦在完成相对论后立即发布。包含一张自拍照,可以清晰看到背景中潦草的方程式和黑板。要能看到该帖子被尼古拉·特斯拉点赞了。 277 | 278 | 原版英文提示词: 279 | a hyper realistic twitter post by Albert Einstein right after finishing the theory of relativity. include a selfie where you can clearly see scribbled equations and a chalkboard in the background. have it visible that the post was liked by Nikola Tesla 280 | ``` 281 | 282 | [⬆️ 返回案例目录](#example-toc) 283 | 284 | 285 | ## 案例 60:Emoji 簇绒地毯 (by [@gizakdag](https://x.com/gizakdag)) 286 | 287 | [原文链接](https://x.com/gizakdag/status/1913925062568144924) 288 | 289 | 手工簇绒地毯,形状为恐龙 Emoji 🦖 290 | 291 | **提示词:** 292 | ``` 293 | 创建一张色彩鲜艳的手工簇绒地毯图片,形状为 🦖 表情符号,放置在简单的地板背景上。地毯设计大胆、有趣,具有柔软蓬松的质地和粗纱线细节。从上方拍摄,在自然日光下,带有略微古怪的 DIY 美学风格。色彩鲜艳、卡通轮廓、触感舒适的材料——类似于手工簇绒艺术地毯。 294 | ``` 295 | 296 | *注意:可替换提示词中的 🦖 为其他 Emoji。* 297 | 298 | [⬆️ 返回案例目录](#example-toc) 299 | 300 | 301 | ## 案例 59:彩色矢量艺术海报 (by [@michaelrabone](https://x.com/michaelrabone)) 302 | 303 | [原文链接](https://x.com/michaelrabone/status/1913865394139316291) 304 | 305 | 伦敦彩色矢量艺术海报 306 | 307 | **提示词:** 308 | ``` 309 | 地点是"英国伦敦",生成一张夏季的彩色矢量艺术海报,顶部有大的"LONDON"标题,下方有较小的"UNITED KINGDOM"标题 310 | ``` 311 | *注意:可替换提示词中的城市和国家名称(例如将"英国伦敦"替换为"中国北京"以生成示例图,大小标题也跟着更换)。此风格提示词也可用于食物、电影、音乐等主题。* 312 | 313 | [⬆️ 返回案例目录](#example-toc) 314 | 315 | 316 | ## 案例 58:云彩艺术 (by [@umesh_ai](https://x.com/umesh_ai)) 317 | 318 | [原文链接](https://x.com/umesh_ai/status/1913628737872027805) 319 | 320 | 由云彩组成的龙在长城上空 321 | 322 | **提示词:** 323 | ``` 324 | 生成一张照片:捕捉了白天的场景,天空中散落的云彩组成了 [主体/物体] 的形状,位于 [地点] 的上方。 325 | ``` 326 | 327 | *注意:可替换提示词中的 `[SUBJECT/OBJECT]`(云彩形状的主体)和 `[LOCATION]`(地点)。示例图的主体是中国龙,地点是长城。* 328 | 329 | [⬆️ 返回案例目录](#example-toc) 330 | 331 | 332 | ## 案例 57:8位像素图标 (by [@egeberkina](https://x.com/egeberkina)) 333 | 334 | [原文链接](https://x.com/egeberkina/status/1913654508330058064) 335 | 336 | 8位像素风格的汉堡图标 337 | 338 | **提示词:** 339 | ``` 340 | 创建一个 [🍔] 的极简 8 位像素标志,居中放置在纯白背景上。使用有限的复古调色板,带有像素化细节、锐利边缘和干净的块状形态。该标志应简洁、具有标志性,并能在像素艺术风格中清晰识别——灵感来自经典街机游戏美学。 341 | ``` 342 | 343 | *注意:可替换提示词中的 `[🍔]` 为其他 Emoji 或对象。提示词翻译自英文版本,请参考原文链接* 344 | 345 | [⬆️ 返回案例目录](#example-toc) 346 | 347 | 348 | ## 案例 56:迷你 3D 建筑 (by [@dotey](https://x.com/dotey)) 349 | 350 | [原文链接](https://x.com/dotey/status/1913759515700285569) 351 | 352 | 星巴克咖啡杯造型的 3D Q版迷你咖啡馆建筑模型 353 | 354 | **提示词:** 355 | ``` 356 | 3D Q版迷你风格,一个充满奇趣的迷你星巴克咖啡馆,外观就像一个巨大的外带咖啡杯,还有盖子和吸管。建筑共两层,大大的玻璃窗清晰地展示出内部温馨而精致的设计:木质的家具、温暖的灯光以及忙碌的咖啡师们。街道上有可爱的小人偶漫步或坐着,四周布置着长凳、街灯和植物盆栽,营造出迷人的城市一角。整体采用城市微缩景观风格,细节丰富、逼真,画面光线柔和、呈现出午后的惬意感受。 357 | ``` 358 | *注意:可以让 AI 参考上面的提示词,为你生成其他建筑的类似提示词。例如:参考上面的提示词,写一个类似的提示词,针对【DunkinDonuts】,【甜甜圈】造型* 359 | 360 | [⬆️ 返回案例目录](#example-toc) 361 | 362 | 363 | ## 案例 55:低多边形 (Low-Poly) 3D 渲染 (by [@azed_ai](https://x.com/azed_ai)) 364 | 365 | [原文链接](https://x.com/azed_ai/status/1912084257918595342) 366 | 367 | 低多边形 (Low-Poly) 风格的 3D 渲染蜥蜴 368 | 369 | **提示词:** 370 | ``` 371 | 一个 [subject] 的低多边形 3D 渲染图,由干净的三角形面构成,具有平坦的 [color1] 和 [color2] 表面。环境是一个风格化的数字沙漠,具有极简的几何形状和环境光遮蔽效果。 372 | ``` 373 | 374 | *注意:可替换提示词中的 `[subject]`(要画的对象)、`[color1]` 和 `[color2]`(颜色)以生成不同对象。示例图的subject为蜥蜴,颜色1/2分别为olive green和dusty brown。* 375 | 376 | 377 | [⬆️ 返回案例目录](#example-toc) 378 | 379 | 380 | ## 案例 54:“极其平凡”的iPhone自拍 (by [@jiamimaodashu](https://x.com/jiamimaodashu)) 381 | 382 | [原文链接](https://x.com/jiamimaodashu/status/1912653073190879410) 383 | 384 | 陈奕迅和谢霆锋在香港维多利亚港旁的“极其平凡无奇”的iPhone自拍照 385 | 386 | **提示词:** 387 | ``` 388 | 请画一张极其平凡无奇的iPhone 自拍照,没有明确的主体或构图感,就像是随手一拍的快照。照片略带运动模糊,阳光或店内灯光不均导致轻微曝光过度。角度尴尬、构图混乱,整体呈现出一种刻意的平庸感-就像是从口袋里拿手机时不小心拍到的一张自拍。主角是陈奕迅和谢霆锋,晚上,旁边是香港会展中心,在香港维多利亚港旁边。 389 | ``` 390 | *注意:这个提示词旨在生成一张看起来非常随意、甚至有点“失败”的快照风格照片。* 391 | 392 | [⬆️ 返回案例目录](#example-toc) 393 | 394 | 395 | ## 案例 53:Emoji 充气感靠垫 (by [@gizakdag](https://x.com/gizakdag)) 396 | 397 | [原文链接](https://x.com/gizakdag/status/1912858535643197927) 398 | 399 | 恳求脸 Emoji 变成的充气感靠垫 400 | 401 | **提示词:** 402 | ``` 403 | Create a high-resolution 3D render of [🥹] designed as an inflatable, puffy object. The shape should appear soft, rounded, and air-filled — like a plush balloon or blow-up toy. Use a smooth, matte texture with subtle fabric creases and stitching to emphasize the inflatable look. The form should be slightly irregular and squishy, with gentle shadows and soft lighting that highlight volume and realism. Place it on a clean, minimal background (light gray or pale blue), and maintain a playful, sculptural aesthetic. 404 | ``` 405 | 406 | *注意:可将提示词中的 [🥹] 替换为其他 Emoji。* 407 | 408 | [⬆️ 返回案例目录](#example-toc) 409 | 410 | 411 | ## 案例 52:纸艺风格 Emoji 图标 (by [@egeberkina](https://x.com/egeberkina)) 412 | 413 | [原文链接](https://x.com/egeberkina/status/1912521263085482464) 414 | 415 | 纸艺风格的火焰 Emoji 图标 416 | 417 | **提示词:** 418 | ``` 419 | A paper craft-style "🔥" floating on a pure white background. The emoji is handcrafted from colorful cut paper with visible textures, creases, and layered shapes. It casts a soft drop shadow beneath, giving a sense of lightness and depth. The design is minimal, playful, and clean — centered in the frame with lots of negative space. Use soft studio lighting to highlight the paper texture and edges. 420 | ``` 421 | 422 | *注意:可将提示词中的 "🔥" 替换为其他 Emoji。* 423 | 424 | [⬆️ 返回案例目录](#example-toc) 425 | 426 | 427 | ## 案例 51:护照入境印章 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 428 | 429 | [原文链接1](https://x.com/ZHO_ZHO_ZHO/status/1912188562944250035) 430 | [原文链接2](https://x.com/M_w14_/status/1912146666410459618) 431 | 432 | 北京故宫护照入境印章 433 | 434 | **提示词:** 435 | ``` 436 | 创建一个逼真的护照页,并盖上[北京, 中国]的入境章。章面应以粗体英文写明“欢迎来到北京”,并设计成圆形或椭圆形,并带有装饰性边框。章面应包含“ARRIVAL”字样和一个虚构的日期,例如“2025年4月16日”。在章面中加入{故宫}的微妙轮廓作为背景细节。使用深蓝色或红色墨水并略加晕染,以增强真实感。章面应略微倾斜,如同手工压印。护照页应清晰可见纸张纹理和安全图案 437 | ``` 438 | *注意:可替换提示词中括号内的城市、国家、地标和日期。* 439 | 440 | [⬆️ 返回案例目录](#example-toc) 441 | 442 | 443 | ## 案例 50:物理破坏效果卡片 (劳拉) (by [@op7418](https://x.com/op7418)) 444 | 445 | [原文链接1](https://x.com/op7418/status/1912782048160542886) 446 | [原文链接2](https://x.com/hc_dsn/status/1912367201476309396) 447 | 448 | 劳拉·克劳馥冲破“考古探险”卡牌边框,带有物理破坏效果 449 | 450 | **提示词:** 451 | ``` 452 | 一幅超写实、电影感的插画,描绘了劳拉·克劳馥动态地撞穿一张“考古探险”集换卡牌的边框。她正处于跳跃中或用绳索摆荡,穿着标志性的冒险装备,可能正在使用双枪射击,枪口的火焰帮助将卡牌古老的石雕边框震碎,在破口周围制造出可见的维度破裂效果,如能量裂纹和空间扭曲,使灰尘和碎片四散飞溅。她的身体充满活力地向前冲出,带有明显的运动深度,突破了卡牌的平面,卡牌内部(背景)描绘着茂密的丛林遗迹或布满陷阱的古墓内部。卡牌的碎屑与 crumbling 的石头、飞舞的藤蔓、古钱币碎片和用过的弹壳混合在一起。“考古探险”的标题和“劳拉·克劳馥”的名字(带有一个风格化的文物图标)在卡牌剩余的、布满裂纹和风化痕迹的部分上可见。充满冒险感的、动态的灯光突出了她的运动能力和危险的环境。 453 | ``` 454 | *注意:原推文提到核心词是 dimensional break effects 和 motion depth。* 455 | 456 | [⬆️ 返回案例目录](#example-toc) 457 | 458 | 459 | ## 案例 49:时尚杂志封面风格 (by [@dotey](https://x.com/dotey)) 460 | 461 | [原文链接](https://x.com/dotey/status/1912536019905233194) 462 | 463 | 身穿粉色旗袍头戴花饰手托蝴蝶的女子时尚杂志封面 464 | 465 | **提示词:** 466 | ``` 467 | 一位美丽的女子身穿粉色旗袍,头戴精致的花饰,秀发中点缀着色彩缤纷的花朵,颈间装饰着优雅的白色蕾丝领子。她的一只手轻托着几只大型蝴蝶。整体拍摄风格呈现高清细节质感,类似时尚杂志封面设计,照片上方中央位置标有文字「FASHION DESIGN」。画面背景采用简约的纯浅灰色,以突出人物主体。 468 | ``` 469 | 470 | [⬆️ 返回案例目录](#example-toc) 471 | 472 | 473 | ## 案例 48:体素风格 3D 图标转换 (by [@BrettFromDJ](https://x.com/BrettFromDJ)) 474 | 475 | [原文链接1](https://x.com/BrettFromDJ/status/1910387413404234076) 476 | [原文链接2](https://x.com/ZHO_ZHO_ZHO/status/1910671581962985788) 477 | 478 | 体素风格 3D 图标 479 | 480 | **提示词:** 481 | ``` 482 | 三个步骤 483 | 1. 上传参考图 484 | 2. 上传要转换的照片 485 | 3. 提示词:将图片/描述/emoji转换为参考图一样的体素 3D 图标,Octane 渲染,8k 486 | ``` 487 | 488 | *注意:中文提示词 by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)* 489 | 490 | **需上传参考图片:** 需要上传两张图片:一张包含期望体素风格图标的参考图(如推文作者提供),以及一张要转换的原始图标。 491 | 492 | [⬆️ 返回案例目录](#example-toc) 493 | 494 | 495 | ## 案例 47:键盘ESC 键帽微型立体模型 (by [@egeberkina](https://x.com/egeberkina)) 496 | 497 | [原文链接](https://x.com/egeberkina/status/1911368319212408926) 498 | 499 | 键盘 ESC 键帽内的微型电脑工作室立体模型 500 | 501 | **提示词:** 502 | 503 | ``` 504 | 一个超写实的等距视角 3D 渲染图,展示了一个微型电脑工作室,它位于一个半透明的机械键盘键帽内,该键帽特别放置在一个真实的哑光表面机械键盘的 ESC 键上。键帽内部,一个小人穿着舒适的有纹理连帽衫,坐在现代人体工学椅子上,正在一个发光的超逼真电脑屏幕前工作。环境充满了逼真的微型科技配件:真实材质的台灯、带有反光的显示器、微小的扬声器格栅、缠绕的电线和陶瓷杯子。场景底部由泥土、岩石和苔藓构成,具有照片级的纹理和瑕疵。键帽内部的光线模仿自然的清晨阳光,投下柔和的阴影和温暖的色调,而外部则有来自周围键盘的冷色调环境反射。单词“ESC”以微弱的磨砂玻璃效果巧妙地蚀刻在半透明键帽的顶部——根据角度仅勉强可见。周围的键盘按键如 F1、Q、Shift 和 CTRL 清晰、有纹理,并具有照片级的逼真光照。拍摄效果如同使用高端手机相机,具有浅景深、完美的白平衡和电影般的细节。 505 | ``` 506 | 507 | *注意:中文版本提示词由英文版本翻译而来,原提示词请查看英文版本* 508 | 509 | [⬆️ 返回案例目录](#example-toc) 510 | 511 | 512 | 513 | ## 案例 46:快乐胶囊制作 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 514 | 515 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1911724629460455896) 516 | 517 | 快乐胶囊 518 | 519 | **提示词:** 520 | ``` 521 | 标题(大字):速效快乐胶囊 522 | 523 | 一颗上为星巴克绿下为透明的小药丸,上面印有星巴克logo,里面有很多咖啡豆 524 | 525 | 说明(小字):请在悲伤难过时服用,一日三次,一次两粒 526 | 527 | 购买按钮 和 药丸颜色一致,下面价格:$9,请遵循医嘱酌情购买 528 | ``` 529 | 530 | [⬆️ 返回案例目录](#example-toc) 531 | 532 | 533 | ## 案例 45:3D Q版大学拟人化形象 (by [@dotey](https://x.com/dotey)) 534 | 535 | [原文链接](https://x.com/dotey/status/1911988003729203648) 536 | 537 | 西北工业大学拟人化3D Q版美少女,体现航空航天航海特色 538 | 539 | **提示词:** 540 | ``` 541 | 給【西北工业大学】画一个拟人化的3D Q版美少女形象,体现学校【航空航天航海三航】特色 542 | ``` 543 | *注意:可替换【】括号内的学校名称和特色描述以生成不同大学的拟人化形象。* 544 | 545 | [⬆️ 返回案例目录](#example-toc) 546 | 547 | 548 | ## 案例 44:RPG 风格角色卡片制作 (by [@berryxia_ai](https://x.com/berryxia_ai)) 549 | 550 | [原文链接](https://x.com/berryxia_ai/status/1911334046724165905) 551 | 552 | RPG 风格的设计师角色卡片 553 | 554 | **提示词:** 555 | ``` 556 | Create a digital character card in RPG collectible style. 557 | The subject is a 【Programmer】, standing confidently with tools or symbols relevant to their job. 558 | Render it in 3D cartoon style, soft lighting, vivid personality. 559 | Include skill bars or stats like [Skill1 +x], [Skill2 +x, e.g., Creativity +10, UI/UX +8]. 560 | Add a title banner on top and a nameplate on the bottom. 561 | Frame the card with clean edges like a real figure box. 562 | Make the background fit the profession's theme. 563 | Colors: warm highlights, profession-matching hues. 564 | ``` 565 | 566 | *注意:可替换【】括号内的职业为Designer、Doctor等等* 567 | 568 | **需上传参考图片:** 可选。可根据职业或角色描述生成,或上传照片作为参考。 569 | 570 | [⬆️ 返回案例目录](#example-toc) 571 | 572 | 573 | ## 案例 43:Q版可爱俄罗斯套娃 (戴珍珠耳环的少女) (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 574 | 575 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1911669883315818497) 576 | 577 | Q版戴珍珠耳环的少女俄罗斯套娃 578 | 579 | **提示词:** 580 | ``` 581 | 把图片人物生成变成 Q 版可爱俄罗斯套娃🪆,大到小一共五个,放在精致的木桌上,横幅4:3比例 582 | ``` 583 | *注意:对原提示词的比例描述稍作修改。原始提示词见原文链接。* 584 | 585 | **需上传参考图片:** 需要上传一张人物图片作为转换对象 (原文使用了[《戴珍珠耳环的少女》](./references/Meisje_met_de_parel.jpg))。 586 | 587 | [⬆️ 返回案例目录](#example-toc) 588 | 589 | 590 | ## 案例 42:3D Q版情侣水晶球 (by [@balconychy](https://x.com/balconychy)) 591 | 592 | [原文链接](https://x.com/balconychy/status/1909908568129655248) 593 | 594 | 3D Q版情侣水晶球 595 | 596 | **提示词:** 597 | ``` 598 | 将附图中的人物转换成水晶球场景。 整体环境:水晶球放在窗户旁桌面上,背景模糊,暖色调。阳光透过球体,洒下点点金光,照亮了周围的黑暗。 水晶球内部:人物是可爱Q版3D造型,相互之间满眼的爱意。 599 | ``` 600 | **需上传参考图片:** 一张情侣照片 或 一张其他人物照片。 601 | 602 | [⬆️ 返回案例目录](#example-toc) 603 | 604 | 605 | ## 案例 41:微型立体场景 (孙悟空三打白骨精) (by [@dotey](https://x.com/dotey)) 606 | 607 | [原文链接](https://x.com/dotey/status/1911609122547449886) 608 | 609 | Q版孙悟空三打白骨精微型立体场景,移轴摄影风格 610 | 611 | **提示词:** 612 | ``` 613 | 微型立体场景呈现,运用移轴摄影的技法,呈现出Q版【孙悟空三打白骨精】场景 614 | ``` 615 | 616 | *注意:提示词中括号内的【孙悟空三打白骨精】可以替换为其他中文场景,如“孙悟空大闹天宫”、“哪吒闹海”、“武松打虎”、“黛玉葬花”、“孙悟空三打白骨精”、“关云长过五关斩六将”等。* 617 | 618 | [⬆️ 返回案例目录](#example-toc) 619 | 620 | 621 | ## 案例 40:日系双格漫画 (少女总统红温了) (by [@hellokaton](https://x.com/hellokaton)) 622 | 623 | [原文链接](https://x.com/hellokaton/status/1910900979194646959) 624 | 625 | 日系双格漫画:少女总统因电话未接通而生气加关税 626 | 627 | **提示词:** 628 | ``` 629 | 创建一张日系萌系双格漫画,上下排列,主题:少女总统的工作日常。 630 | 631 | 角色形象: 将上传的附件转换为日系萌系卡通女生形象的风格,保留原图所有细节,如服饰(西装)、发型(明亮的金黄色)、五官等。 632 | 633 | 第一格: 634 | - 表情: 委屈巴巴,沮丧的表情,单手托腮 635 | - 文字框: “肿么办嘛!他不跟我通话!(;´д`)” 636 | - 场景: 暖色调办公室,背后美国国旗,桌上放着一堆汉堡,一个复古红色转盘电话,人物在画面左边,电话在右边。 637 | 638 | 第二格: 639 | - 表情: 咬牙切齿,暴怒,脸涨红 640 | - 动作: 猛拍桌子,汉堡震得跳起来 641 | - 文字泡: “哼!关税加倍!不理我是他们的损失!( `д´ )” - 场景: 和第一格相同,但一片狼藉。 642 | 643 | 其他说明: 644 | - 文字采用简洁可爱的手写体,整体风格可爱而有趣。 645 | - 构图饱满生动,请保留足够空间用于文字显示,适当留白。 646 | - 图片比例 2:3。 647 | - 画面整体色彩鲜艳,突出卡通风格。 648 | ``` 649 | 650 | **需上传参考图片:** 需要上传一张人物照片作为参考。 651 | 652 | [⬆️ 返回案例目录](#example-toc) 653 | 654 | 655 | ## 案例 39:卡通插画 (by [@dotey](https://x.com/dotey)) 656 | 657 | [原文链接](https://x.com/dotey/status/1905103477879267823) 658 | 659 | 卡通插画 660 | 661 | **提示词:** 662 | ``` 663 | A cartoon-style character with a smiling computer monitor as its head, wearing gloves and boots, happily jumping through a glowing, blue, circular portal in a lush, fantasy forest landscape. The forest is detailed with large trees, mushrooms, flowers, a serene river, floating islands, and an atmospheric starry night sky with multiple moons. Bright, vibrant colors with soft lighting, fantasy illustration style. 664 | ``` 665 | 666 | [⬆️ 返回案例目录](#example-toc) 667 | 668 | 669 | ## 案例 38:手绘信息图卡片 (by [@dotey](https://x.com/dotey)) 670 | 671 | [原文链接](https://x.com/dotey/status/1907870919852179850) 672 | 673 | 手绘信息图卡片 674 | 675 | **提示词:** 676 | ``` 677 | 创作一张手绘风格的信息图卡片,比例为9:16竖版。卡片主题鲜明,背景为带有纸质肌理的米色或米白色,整体设计体现质朴、亲切的手绘美感。 678 | 679 | 卡片上方以红黑相间、对比鲜明的大号毛笔草书字体突出标题,吸引视觉焦点。文字内容均采用中文草书,整体布局分为2至4个清晰的小节,每节以简短、精炼的中文短语表达核心要点。字体保持草书流畅的韵律感,既清晰可读又富有艺术气息。周边适当留白。 680 | 681 | 卡片中点缀简单、有趣的手绘插画或图标,例如人物或象征符号,以增强视觉吸引力,引发读者思考与共鸣。整体布局注意视觉平衡,预留足够的空白空间,确保画面简洁明了,易于阅读和理解。 682 | “做 IP 是长期复利 683 | 坚持每日更新,肯定会有结果,因为 99% 都坚持不了的!” 684 | ``` 685 | 686 | [⬆️ 返回案例目录](#example-toc) 687 | 688 | 689 | ## 案例 37:社交媒体帖子涂鸦 (by [@op7418](https://x.com/op7418)) 690 | 691 | [原文链接](https://x.com/op7418/status/1906208691877253536) 692 | 693 | 社交媒体帖子涂鸦 694 | 695 | **提示词:** 696 | ``` 697 | 生成图片,把它打印出来,然后用红墨水疯狂地加上手写中文批注、涂鸦、乱画,如果你想的话,还可以加点小剪贴画 698 | ``` 699 | 700 | **需上传参考图片:** 一张照片或者截图。 701 | 702 | [⬆️ 返回案例目录](#example-toc) 703 | 704 | 705 | ## 案例 36:极简主义 3D 插画 (文字版) (by [@dotey](https://x.com/dotey)) 706 | 707 | [原文链接](https://x.com/dotey/status/1907131027253772399) 708 | 709 | 极简主义 3D 插画 (文字版) 710 | 711 | **提示词:** 712 | ``` 713 | 画一个马桶: 714 | 715 | ## 艺术风格简介:极简主义3D插画(Minimalist 3D Illustration) 716 | 717 | ### 🎨 视觉元素(Visual Elements) 718 | 719 | #### 🟢 造型语言(Shape Language) 720 | - 圆润的边缘、平滑柔和的外形,采用简化几何造型。 721 | 722 | #### 🎨 色彩(Colors) 723 | - **主色调:** 柔和米色、浅灰色、暖橙色。 724 | - **强调色:** 暖橙色用于焦点元素。 725 | - **明暗处理:** 柔和渐变,平滑过渡,避免强烈的阴影和高光。 726 | 727 | #### 💡 光照(Lighting) 728 | - **类型:** 柔和、漫反射光照。 729 | - **光源方向:** 上方稍偏右。 730 | - **阴影风格:** 微妙且漫射,无锐利或高对比度的阴影。 731 | 732 | #### 🧱 材质(Materials) 733 | - **表面纹理:** 哑光、平滑的表面,带有微妙的明暗变化。 734 | - **反射性:** 低或无,避免明显的光泽。 735 | 736 | #### 🖼️ 构图(Composition) 737 | - **对象呈现:** 单一、居中的物体,周围留出大量负空间。 738 | - **视角:** 轻微倾斜视角,呈现适度的三维感,但无明显的景深效果。 739 | - **背景:** 纯色、低饱和度,与主体协调且不干扰视线。 740 | 741 | #### ✒️ 字体排版(Typography) 742 | - **字体风格:** 极简、无衬线字体。 743 | - **文字位置:** 左下角,尺寸小巧且不突出。 744 | - **字体颜色:** 灰色,与背景形成低对比度。 745 | 746 | #### 🖥️ 渲染风格(Rendering Style) 747 | - **技术手法:** 3D渲染,采用简化的低多边形风格。 748 | - **细节程度:** 中等细节,以形状和色彩为主,避免复杂纹理和细节。 749 | 750 | ### 🎯 风格目标(Purpose) 751 | > 创建干净、美观的视觉效果,强调简洁、亲和和现代感。 752 | 753 | ``` 754 | 755 | [⬆️ 返回案例目录](#example-toc) 756 | 757 | 758 | ## 案例 35:毛茸茸南瓜灯 (by [gizakdag](https://x.com/gizakdag)) 759 | 760 | [原文链接1](https://x.com/gizakdag/status/1911075302941622512) 761 | [原文链接2](https://x.com/dotey/status/1912276883196039520) 762 | 763 | 毛茸茸南瓜灯 764 | 765 | **提示词:** 766 | ``` 767 | 将一个简单平面的矢量图标 [🎃] 转化为柔软、立体、毛茸茸的可爱物体。整体造型被浓密的毛发完全覆盖,毛发质感极其真实,带有柔和的阴影。物体居中悬浮于干净的浅灰色背景中,轻盈漂浮。整体风格超现实,富有触感和现代感,带来舒适和俏皮的视觉感受。采用摄影棚级灯光,高分辨率渲染,比例为1:1。 768 | ``` 769 | 770 | *注:中文提示词 by @dotey* 771 | 772 | [⬆️ 返回案例目录](#example-toc) 773 | 774 | 775 | ## 案例 34:手绘信息图卡片 (by [@dotey](https://x.com/dotey)) 776 | 777 | [原文链接](https://x.com/dotey/status/1907903480678985784) 778 | 779 | 手绘信息图卡片 780 | 781 | **提示词:** 782 | ``` 783 | 创作一张手绘风格的信息图卡片,比例为9:16竖版。卡片主题鲜明,背景为带有纸质肌理的米色或米白色,整体设计体现质朴、亲切的手绘美感。 784 | 785 | 卡片上方以红黑相间、对比鲜明的大号毛笔草书字体突出标题,吸引视觉焦点。文字内容均采用中文草书,整体布局分为2至4个清晰的小节,每节以简短、精炼的中文短语表达核心要点。字体保持草书流畅的韵律感,既清晰可读又富有艺术气息。 786 | 787 | 卡片中点缀简单、有趣的手绘插画或图标,例如人物或象征符号,以增强视觉吸引力,引发读者思考与共鸣。 788 | 整体布局注意视觉平衡,预留足够的空白空间,确保画面简洁明了,易于阅读和理解。 789 | 790 |

「认知」决定上限 791 | 「圈子」决定机会

792 | - 你赚不到「认知」以外的钱, 793 | - 也遇不到「圈子」以外的机会。 794 | ``` 795 | 796 | [⬆️ 返回案例目录](#example-toc) 797 | 798 | 799 | ## 案例 33:全家福婚纱照 (by [@balconychy](https://x.com/balconychy)) 800 | 801 | [原文链接](https://x.com/balconychy/status/1909426314643222595) 802 | 803 | 全家福婚纱照 804 | 805 | **提示词:** 806 | ``` 807 | 将照片里的转换成Q版 3D人物,父母婚礼服饰,孩子是美丽的花童。 父母,西式婚礼服饰,父亲礼服,母亲婚纱。孩子手捧鲜花。 背景是五彩鲜花做的拱门。 除了人物是3D Q版,环境其他都是写实。 整体放在一个相框里。 808 | ``` 809 | 810 | **需上传参考图片:** 一张家庭照片。 811 | 812 | [⬆️ 返回案例目录](#example-toc) 813 | 814 | 815 | ## 案例 32:纸艺剪贴风格招聘广告 (by [@dotey](https://x.com/dotey)) 816 | 817 | [原文链接](https://x.com/dotey/status/1905021792642564406) 818 | 819 | 纸艺剪贴风格招聘广告 820 | 821 | **提示词:** 822 | ``` 823 | The image shows professional drivers of cars and trucks at work, impressive urban and rural speeds, a positive team environment and modern visuals of the fleet - all this advertises a vacancy for drivers with competitive pay, flexible working hours and a clear call to institutions: "Apply today - we will start tomorrow!" 824 | ``` 825 | 826 | [⬆️ 返回案例目录](#example-toc) 827 | 828 | 829 | ## 案例 31:动漫贴纸集合 (by [@richardchang](https://x.com/richardchang)) 830 | 831 | [原文链接](https://x.com/richardchang/status/1909086122959139312) 832 | 833 | 动漫贴纸集合 834 | 835 | **提示词:** 836 | ``` 837 | Naruto stickers 838 | ``` 839 | 840 | [⬆️ 返回案例目录](#example-toc) 841 | 842 | 843 | ## 案例 30:35mm 胶片风格飞岛 (by [@dotey](https://x.com/dotey)) 844 | 845 | [原文链接](https://x.com/dotey/status/1905020833451348283) 846 | 847 | 848 | 35mm 胶片风格飞岛 849 | 850 | **提示词:** 851 | ``` 852 | 35 mm photo of Moscow floating in the sky on a flying islands 853 | ``` 854 | 855 | [⬆️ 返回案例目录](#example-toc) 856 | 857 | 858 | ## 案例 29:名画人物 OOTD (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 859 | 860 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1909892294217781714) 861 | 862 | 名画人物 OOTD 863 | 864 | **提示词:** 865 | ``` 866 | 为图片人物生成不同职业风的OOTD,时尚穿搭和配饰,和人物色系一致的纯色背景,Q版 3d,c4d渲染,保持人脸特征,姿势都要保持一致,人物的比例腿很修长 867 | 868 | 构图:9:16 869 | 顶部文字:OOTD,左侧为人物ootd q版形象,右侧为穿搭的单件展示 870 | 871 | 先来第一个职业:时尚设计师 872 | ``` 873 | **需上传参考图片:** [《戴珍珠耳环的少女》图片](./references/Meisje_met_de_parel.jpg)。 874 | 875 | [⬆️ 返回案例目录](#example-toc) 876 | 877 | 878 | ## 案例 28:扁平贴纸设计 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 879 | 880 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1908044836953108490) 881 | 882 | 扁平贴纸设计 883 | 884 | **提示词:** 885 | ``` 886 | 把这张照片设计成一个极简扁平插画风格的Q版贴纸,厚白边,保留人物特征,风格要可爱一些,人物要超出圆形区域边框,圆形区域要为纯色不要3d感,透明背景 887 | ``` 888 | 889 | **需上传参考图片:** 一张清晰头像照片。 890 | 891 | [⬆️ 返回案例目录](#example-toc) 892 | 893 | 894 | ## 案例 27:Q 版表情包制作 (by [@dotey](https://x.com/dotey)) 895 | 896 | [原文链接](https://x.com/dotey/status/1909800530739679488) 897 | 898 | Q 版表情包制作 899 | 900 | **提示词:** 901 | ``` 902 | 创作一套全新的 chibi sticker,共六个独特姿势,以用户形象为主角: 903 | 1. 双手比出剪刀手,俏皮地眨眼; 904 | 2. 泪眼汪汪、嘴唇微微颤动,呈现可爱哭泣的表情; 905 | 3. 张开双臂,做出热情的大大拥抱姿势; 906 | 4. 侧卧入睡,靠着迷你枕头,带着甜甜的微笑; 907 | 5. 自信满满地向前方伸手指,周围点缀闪亮特效; 908 | 6. 手势飞吻,周围飘散出爱心表情。 909 | 保留 chibi 美学风格:夸张有神的大眼睛、柔和的面部线条、活泼俏皮的短款黑色发型、配以大胆领口设计的白色服饰,背景使用充满活力的红色,并搭配星星或彩色纸屑元素进行装饰。周边适当留白。 910 | Aspect ratio: 9:16 911 | ``` 912 | **需上传参考图片:** 一张清晰头像照片。 913 | 914 | [⬆️ 返回案例目录](#example-toc) 915 | 916 | 917 | ## 案例 26:名画人物麦片广告 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 918 | 919 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1909542765857587310) 920 | 921 | 名画人物麦片广告 922 | 923 | **提示词:** 924 | ``` 925 | 《大师麦片》:根据我上传的照片的人物特征判断,为他生成一个符合他特质的燕麦片搭配(比如蔬菜、水果、酸奶、粗粮等等)和包装设计,然后生成他作为麦片包装盒封面人物 加 相应麦片搭配的广告封面,人物要保持特征、可爱Q版3d、c4d渲染风格,麦片所放置的地方的风格也要符合设定,比如放在厨房、超市 极简主义的设计台上等等,先做好设定,再生成图像 926 | ``` 927 | 928 | **需上传参考图片:** [《戴珍珠耳环的少女》图片](./references/Meisje_met_de_parel.jpg)。 929 | 930 | [⬆️ 返回案例目录](#example-toc) 931 | 932 | 933 | ## 案例 25:极简主义 3D 插画 (by [@0xdlk](https://x.com/0xdlk)) 934 | 935 | [原文链接](https://x.com/0xdlk/status/1906843247432929642) 936 | 937 | 极简主义 3D 插画 938 | 939 | **提示词:** 940 | ``` 941 | Generate a toilet with the following JSON profile: 942 | { 943 | "art_style_profile": { 944 | "style_name": "Minimalist 3D Illustration", 945 | "visual_elements": { 946 | "shape_language": "Rounded edges, smooth and soft forms with simplified geometry", 947 | "colors": { 948 | "primary_palette": ["Soft beige, light gray, warm orange"], 949 | "accent_colors": ["Warm orange for focal elements"], 950 | "shading": "Soft gradients with smooth transitions, avoiding harsh shadows or highlights" 951 | }, 952 | "lighting": { 953 | "type": "Soft, diffused lighting", 954 | "source_direction": "Above and slightly to the right", 955 | "shadow_style": "Subtle and diffused, no sharp or high-contrast shadows" 956 | }, 957 | "materials": { 958 | "surface_texture": "Matte, smooth surfaces with subtle shading", 959 | "reflectivity": "Low to none, avoiding glossiness" 960 | }, 961 | "composition": { 962 | "object_presentation": "Single, central object displayed in isolation with ample negative space", 963 | "perspective": "Slightly angled, giving a three-dimensional feel without extreme depth", 964 | "background": "Solid, muted color that complements the object without distraction" 965 | }, 966 | "typography": { 967 | "font_style": "Minimalistic, sans-serif", 968 | "text_placement": "Bottom-left corner with small, subtle text", 969 | "color": "Gray, low-contrast against the background" 970 | }, 971 | "rendering_style": { 972 | "technique": "3D render with simplified, low-poly aesthetics", 973 | "detail_level": "Medium detail, focusing on form and color over texture or intricacy" 974 | } 975 | }, 976 | "purpose": "To create clean, aesthetically pleasing visuals that emphasize simplicity, approachability, and modernity." 977 | } 978 | } 979 | ``` 980 | 981 | [⬆️ 返回案例目录](#example-toc) 982 | 983 | 984 | ## 案例 24:Funko Pop 公仔制作 (by [@dotey](https://x.com/dotey)) 985 | 986 | [原文链接](https://x.com/dotey/status/1909047283485671924) 987 | 988 | Funko Pop 公仔制作 989 | 990 | **提示词:** 991 | ``` 992 | 把照片中的人物变成 Funko Pop 公仔包装盒的风格,以等距视角(isometric)呈现,并在包装盒上标注标题为“JAMES BOND”。包装盒内展示的是照片中人物形象,旁边搭配有人物的必备物品(手枪、手表、西装、其他)同时,在包装盒旁边还应呈现该公仔本体的实物效果,采用逼真的、具有真实感的渲染风格。 993 | ``` 994 | 995 | **需上传参考图片:** 一张半身或者全身清晰照片。 996 | 997 | [⬆️ 返回案例目录](#example-toc) 998 | 999 | 1000 | ## 案例 23:《泰坦尼克号》模仿 (by [@balconychy](https://x.com/balconychy)) 1001 | 1002 | [原文链接](https://x.com/balconychy/status/1909916265067557299) 1003 | 1004 | 《泰坦尼克号》模仿 1005 | 1006 | **提示词:** 1007 | ``` 1008 | 将附图中的人物转换成可爱Q版3D造型 1009 | 场景:在豪华游轮最顶尖的船头,船头是尖的。 1010 | 男士带着女士站在泰坦尼克号船头,男士双手搂着女士的腰,女士双臂伸展穿着连衣裙,迎着风,脸上洋溢着自由与畅快。 1011 | 此时天色呈现出黄昏的暖色调,大海在船下延展 。 1012 | 除了人物用Q版3D造型以外,其他环境都是实物。 1013 | ``` 1014 | **需上传参考图片:** 一张情侣照片。 1015 | 1016 | [⬆️ 返回案例目录](#example-toc) 1017 | 1018 | 1019 | ## 案例 22:小红书封面 (by [@balconychy](https://x.com/balconychy)) 1020 | 1021 | [原文链接](https://x.com/balconychy/status/1905507936526627078) 1022 | 1023 | 小红书封面 1024 | 1025 | **提示词:** 1026 | ``` 1027 | 画图:画一个小红书封面。 1028 | 要求: 1029 | 有足够的吸引力吸引用户点击; 1030 | 字体醒目,选择有个性的字体; 1031 | 文字大小按重要度分级,体现文案的逻辑结构; 1032 | 标题是普通文字的至少2倍; 1033 | 文字段落之间留白。 1034 | 只对要强调的文字用醒目色吸引用户注意; 1035 | 背景使用吸引眼球的图案(包括不限于纸张,记事本,微信聊天窗口,选择一种) 1036 | 使用合适的图标或图片增加视觉层次,但要减少干扰。 1037 | 1038 | 文案:重磅!ChatGPT又变强了! 1039 | 多任务处理更牛✨ 1040 | 编程能力更强💪 1041 | 创造力爆表🎨 1042 | 快来试试! 1043 | 1044 | 图像9:16比例 1045 | ``` 1046 | 1047 | [⬆️ 返回案例目录](#example-toc) 1048 | 1049 | 1050 | ## 案例 21:简笔画表情包 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1051 | 1052 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1909907741948399873) 1053 | 1054 | 简笔画表情包 1055 | 1056 | **提示词:** 1057 | ``` 1058 | (分为两步) 1059 | 先把图片人物变成手绘简笔画风格 1060 | 然后把简笔画按照吐舌头、微笑、皱眉、惊讶、思考、眨眼生成一系列表情包 1061 | ``` 1062 | 1063 | **需上传参考图片:** 一张人物照片。 1064 | 1065 | [⬆️ 返回案例目录](#example-toc) 1066 | 1067 | 1068 | ## 案例 20:四格漫画 (相对论) (by [@dotey](https://x.com/dotey)) 1069 | 1070 | [原文链接](https://x.com/dotey/status/1904980568107819060) 1071 | 1072 | 四格漫画 (相对论) 1073 | 1074 | **提示词:** 1075 | ``` 1076 | make a colorful page of manga describing the theory of relativity. add some humor 1077 | ``` 1078 | 1079 | [⬆️ 返回案例目录](#example-toc) 1080 | 1081 | 1082 | ## 案例 19:语文课本重绘 (by [@balconychy](https://x.com/balconychy)) 1083 | 1084 | [原文链接](https://x.com/balconychy/status/1906982626365178361) 1085 | 1086 | 语文课本重绘 1087 | 1088 | **提示词:** 1089 | ``` 1090 | 重绘语文课本插画 1091 | ``` 1092 | 1093 | **需上传参考图片:** 一张原课本插画。 1094 | 1095 | [⬆️ 返回案例目录](#example-toc) 1096 | 1097 | 1098 | ## 案例 18:皮克斯3D风格 (by [AnimeAI](https://animeai.online)) 1099 | 1100 | [原文链接](https://animeai.online/#demo-gallery) 1101 | 1102 | 皮克斯3D风格《教父》 1103 | 1104 | **提示词:** 1105 | ``` 1106 | 以皮克斯 3D 风格重绘这张照片 1107 | ``` 1108 | **需上传参考图片:** 一张人物或者其他照片。 1109 | 1110 | [⬆️ 返回案例目录](#example-toc) 1111 | 1112 | 1113 | ## 案例 17:数码宝贝风格图 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1114 | 1115 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1911001291280859559) 1116 | 1117 | 数码宝贝风格图 1118 | 1119 | **提示词:** 1120 | ``` 1121 | 为我生成一张数码宝贝风格的图片,并为我匹配一只数码宝贝 1122 | ``` 1123 | **需上传参考图片:** 一张单人照片。 1124 | 1125 | [⬆️ 返回案例目录](#example-toc) 1126 | 1127 | 1128 | ## 案例 16:布丁老虎机 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1129 | 1130 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1911107569898471818) 1131 | 1132 | 布丁老虎机 1133 | 1134 | **提示词:** 1135 | ``` 1136 | 将图标[🎰]变成美味可口布丁造型,Q弹质感,背景粉白渐变,整体甜美、轻盈、可爱 1137 | ``` 1138 | 1139 | [⬆️ 返回案例目录](#example-toc) 1140 | 1141 | 1142 | ## 案例 15:讽刺海报生成 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1143 | 1144 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1905287637084274742) 1145 | 1146 | 讽刺海报生成 1147 | 1148 | **提示词:** 1149 | ``` 1150 | 为我生成讽刺海报:GPT 4o 狂卷,都别干图像AI了 还是送外卖吧 1151 | ``` 1152 | 1153 | [⬆️ 返回案例目录](#example-toc) 1154 | 1155 | 1156 | ## 案例 14:《海贼王》主题手办制作 (by [@dotey](https://x.com/dotey)) 1157 | 1158 | [原文链接](https://x.com/dotey/status/1909047547563213145) 1159 | 1160 | 《海贼王》主题手办制作 1161 | 1162 | **提示词:** 1163 | ``` 1164 | 把照片中的人物变成《海贼王》(One Piece)动漫主题手办包装盒的风格,以等距视角(isometric)呈现。包装盒内展示的是基于照片人物的《海贼王》动漫画风设计的形象,旁边搭配有日常必备物品(手枪、手表、西装和皮鞋)同时,在包装盒旁边还应呈现该手办本体的实物效果,采用逼真的、具有真实感的渲染风格。 1165 | ``` 1166 | 1167 | *注意:日常必备物品此处稍作修改。请参考原文。* 1168 | 1169 | **需上传参考图片:** 一张半身或者全身照片。 1170 | 1171 | [⬆️ 返回案例目录](#example-toc) 1172 | 1173 | 1174 | ## 案例 13:3D Q版风格 (by [@dotey](https://x.com/dotey)) 1175 | 1176 | [原文链接](https://x.com/dotey/status/1908194518345678865) 1177 | 1178 | 3D Q版风格 1179 | 1180 | **提示词:** 1181 | ``` 1182 | 将场景中的角色转化为3D Q版风格,同时保持原本的场景布置和服装造型不变。 1183 | ``` 1184 | **需上传参考图片:** 一张照片。 1185 | 1186 | [⬆️ 返回案例目录](#example-toc) 1187 | 1188 | 1189 | ## 案例 12:3D 情侣珠宝盒摆件 (by [@dotey](https://x.com/dotey)) 1190 | 1191 | [原文链接](https://x.com/dotey/status/1909332895115714835) 1192 | 1193 | 3D 情侣珠宝盒摆件 1194 | 1195 | **提示词:** 1196 | ``` 1197 | 根据照片上的内容打造一款细致精美、萌趣可爱的3D渲染收藏摆件,装置在柔和粉彩色调、温馨浪漫的展示盒中。展示盒为浅奶油色搭配柔和的金色装饰,形似精致的便携珠宝盒。打开盒盖,呈现出一幕温暖浪漫的场景:两位Q版角色正甜蜜相望。盒顶雕刻着“FOREVER TOGETHER”(永远在一起)的字样,周围点缀着小巧精致的星星与爱心图案。 1198 | 盒内站着照片上的女性,手中捧着一束小巧的白色花束。她的身旁是她的伴侣,照片上的男性。两人都拥有大而闪亮、充满表现力的眼睛,以及柔和、温暖的微笑,传递出浓浓的爱意和迷人的气质。 1199 | 他们身后有一扇圆形窗户,透过窗户能看到阳光明媚的中国古典小镇天际线和轻柔飘浮的云朵。盒内以温暖的柔和光线进行照明,背景中漂浮着花瓣点缀气氛。整个展示盒和角色的色调优雅和谐,营造出一个奢华而梦幻的迷你纪念品场景。 1200 | 尺寸:9:16 1201 | ``` 1202 | 1203 | **需上传参考图片:** 一张情侣照片。 1204 | 1205 | [⬆️ 返回案例目录](#example-toc) 1206 | 1207 | 1208 | ## 案例 11:PS2 游戏封面 (GTA x Shrek) (by [@dotey](https://x.com/dotey)) 1209 | 1210 | [原文链接](https://x.com/dotey/status/1904978767090524372) 1211 | 1212 | PS2 游戏封面 (GTA x Shrek) 1213 | 1214 | **提示词:** 1215 | ``` 1216 | Can you create a PS2 video game case of "Grand Theft Auto: Far Far Away" a GTA based in the Shrek Universe. 1217 | ``` 1218 | 1219 | [⬆️ 返回案例目录](#example-toc) 1220 | 1221 | 1222 | ## 案例 10:讽刺漫画生成 (by [@dotey](https://x.com/dotey)) 1223 | 1224 | [原文链接](https://x.com/dotey/status/1910514811756065159) 1225 | 1226 | 讽刺漫画生成 1227 | 1228 | **提示词:** 1229 | ``` 1230 | 一幅讽刺漫画风格的插画,采用复古美式漫画风格,背景是一个多层货架,货架上都是一样的红色棒球帽,帽子正面印有大字标语“MAKE AMERICA GREAT AGAIN”,帽侧贴着白色标签写着“MADE IN CHINA”,特写视角聚焦其中一顶红色棒球帽。画面下方有价格牌,原价“$50.00”被粗黑线X划掉,改为“$77.00”,色调为怀旧的土黄与暗红色调,阴影处理带有90年代复古印刷质感。整体构图风格夸张讽刺,具讽刺政治消费主义的意味。 1231 | ``` 1232 | 1233 | [⬆️ 返回案例目录](#example-toc) 1234 | 1235 | 1236 | ## 案例 9:气球名画 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1237 | 1238 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1910976632141267237) 1239 | 1240 | 氦气球名画 1241 | 1242 | **提示词:** 1243 | ``` 1244 | 将图片中的人物变成玩偶形状的氦气球 1245 | ``` 1246 | **需上传参考图片:** 一张半身或者全身单人照片。 1247 | 1248 | [⬆️ 返回案例目录](#example-toc) 1249 | 1250 | 1251 | ## 案例 8:乐高收藏品 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1252 | 1253 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1910644499354968091) 1254 | 1255 | 乐高收藏品 1256 | 1257 | **提示词:** 1258 | ``` 1259 | 根据我上传的照片,生成一张纵向比例的照片,使用以下提示词: 1260 | 1261 | 经典乐高人偶风格,一个微缩场景 —— 一只动物站在我身旁。这只动物的配色与我相匹配。 1262 | 1263 | 请根据你对我的理解来创造这只动物(你可以选择任何你认为适合我的动物,不论是真实存在的,还是超现实的、幻想的,只要你觉得符合我的气质即可)。 1264 | 1265 | 整个场景设定在一个透明玻璃立方体内,布景极简。 1266 | 1267 | 微缩场景的底座是哑光黑色,配以银色装饰,风格简约且时尚。 1268 | 1269 | 底座上有一块优雅雕刻的标签牌,字体为精致的衬线体,上面写着该动物的名称。 1270 | 1271 | 底部设计中还巧妙融入了类似自然历史博物馆展示的生物学分类信息,以精细蚀刻的方式呈现。 1272 | 1273 | 整体构图像是一件高端收藏艺术品:精心打造、策展般呈现、灯光细致。 1274 | 1275 | 构图重在平衡。背景为渐变色,从深色到浅色过渡(颜色基于主色调进行选择)。 1276 | ``` 1277 | 1278 | **需上传参考图片:** 一张半身或者全身单人照片。 1279 | 1280 | [⬆️ 返回案例目录](#example-toc) 1281 | 1282 | 1283 | ## 案例 7:个性化房间设计 (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1284 | 1285 | [原文链接](https://x.com/ZHO_ZHO_ZHO/status/1910698005193515370) 1286 | 1287 | 个性化房间设计 1288 | 1289 | **提示词:** 1290 | ``` 1291 | 为我生成我的房间设计(床、书架、沙发、电脑桌和电脑、墙上挂着绘画、绿植,窗外是城市夜景。可爱 3d 风格,c4d 渲染,轴测图。 1292 | ``` 1293 | 1294 | *注意:原文提示词是根据chatgpt的记忆内容为用户生成房间设计,此处稍作修改。请参考原文。* 1295 | 1296 | [⬆️ 返回案例目录](#example-toc) 1297 | 1298 | 1299 | ## 案例 6:角色穿越传送门 (by [@dotey](https://x.com/dotey)) 1300 | 1301 | [原文链接](https://x.com/dotey/status/1908910838636765204) 1302 | 1303 | 角色穿越传送门 1304 | 1305 | **提示词:** 1306 | ``` 1307 | 照片中的角色的 3D Q 版形象穿过传送门,牵着观众的手,在将观众拉向前时动态地回头一看。传送门外的背景是观众的现实世界,一个典型的程序员的书房,有书桌,显示器和笔记本电脑,传送门内是角色所处的3D Q 版世界,细节可以参考照片,整体呈蓝色调,和现实世界形成鲜明对比。传送门散发着神秘的蓝色和紫色色调,是两个世界之间的完美椭圆形框架处在画面中间。从第三人称视角拍摄的摄像机角度,显示观看者的手被拉入角色世界。3:2 的宽高比。 1308 | (需要上传一张半身或者全身清晰照片作为输入) 1309 | ``` 1310 | 1311 | **需上传参考图片:** 一张半身或者全身单人照片。 1312 | 1313 | [⬆️ 返回案例目录](#example-toc) 1314 | 1315 | 1316 | ## 案例 5:吉卜力风格 (by [AnimeAI](https://animeai.online)) 1317 | 1318 | [原文链接](https://animeai.online/#demo-gallery) 1319 | 1320 | 吉卜力风格《蒙娜丽莎》 1321 | 1322 | **提示词:** 1323 | ``` 1324 | 以吉卜力风格重绘这张照片 1325 | ``` 1326 | **需上传参考图片:** 一张人物或者其他照片。 1327 | 1328 | *如果遇到违反内容政策的情况,提示词增加一句:如果背景里有不合适(敏感)的内容,可以进行修改或删除。* 1329 | 1330 | [⬆️ 返回案例目录](#example-toc) 1331 | 1332 | 1333 | ## 案例 4:Q 版中式婚礼图 (by [@balconychy](https://x.com/balconychy)) 1334 | 1335 | [原文链接](https://x.com/balconychy/status/1909418699150237917) 1336 | 1337 | Q 版中式婚礼图 1338 | 1339 | **提示词:** 1340 | ``` 1341 | 将照片里的两个人转换成Q版 3D人物,中式古装婚礼,大红颜色,背景“囍”字剪纸风格图案。 服饰要求:写实,男士身着长袍马褂,主体为红色,上面以金色绣龙纹图案,彰显尊贵大气 ,胸前系着大红花,寓意喜庆吉祥。女士所穿是秀禾服,同样以红色为基调,饰有精美的金色花纹与凤凰刺绣,展现出典雅华丽之感 ,头上搭配花朵发饰,增添柔美温婉气质。二者皆为中式婚礼中经典着装,蕴含着对新人婚姻美满的祝福。 头饰要求: 男士:中式状元帽,主体红色,饰有金色纹样,帽顶有精致金饰,尽显传统儒雅庄重。 女士:凤冠造型,以红色花朵为中心,搭配金色立体装饰与垂坠流苏,华丽富贵,古典韵味十足。 1342 | ``` 1343 | **需上传参考图片:** 一张情侣照片。 1344 | 1345 | [⬆️ 返回案例目录](#example-toc) 1346 | 1347 | 1348 | ## 案例 3:复古宣传海报 (by [@dotey](https://x.com/dotey)) 1349 | 1350 | [原文链接](https://x.com/dotey/status/1905251524248248650) 1351 | 1352 | 复古宣传海报 1353 | 1354 | **提示词:** 1355 | ``` 1356 | 复古宣传海报风格,突出中文文字,背景为红黄放射状图案。画面中心位置有一位美丽的年轻女性,以精致复古风格绘制,面带微笑,气质优雅,具有亲和力。主题是GPT最新AI绘画服务的广告促销,强调‘惊爆价9.9/张’、‘适用各种场景、图像融合、局部重绘’、‘每张提交3次修改’、‘AI直出效果,无需修改’,底部醒目标注‘有意向点右下“我想要”’,右下角绘制一个手指点击按钮动作,左下角展示OpenAI标志。 1357 | ``` 1358 | 1359 | [⬆️ 返回案例目录](#example-toc) 1360 | 1361 | 1362 | ## 案例 2:立体相框 (by [@dotey](https://x.com/dotey)) 1363 | 1364 | [原文链接](https://x.com/dotey/status/1908238003169903060) 1365 | 1366 | 立体相框 1367 | 1368 | **提示词:** 1369 | ``` 1370 | 将场景中的角色转化为3D Q版风格,放在一张拍立得照片上,相纸被一只手拿着,照片中的角色正从拍立得照片中走出,呈现出突破二维相片边框、进入二维现实空间的视觉效果。 1371 | ``` 1372 | **需上传参考图片:** 一张半身或者全身单人照片。 1373 | 1374 | [⬆️ 返回案例目录](#example-toc) 1375 | 1376 | ## 案例 1:Q版求婚场景 (by [@balconychy](https://x.com/balconychy)) 1377 | 1378 | [原文链接](https://x.com/balconychy/status/1909417750587486469) 1379 | 1380 | Q版求婚场景 1381 | 1382 | **提示词:** 1383 | ``` 1384 | 将照片里的两个人转换成Q版 3D人物,场景换成求婚,背景换成淡雅五彩花瓣做的拱门,背景换成浪漫颜色,地上散落着玫瑰花瓣。除了人物采用Q版 3D人物风格,其他环境采用真实写实风格。 1385 | ``` 1386 | **需上传参考图片:** 一张情侣照片。 1387 | 1388 | [⬆️ 返回案例目录](#example-toc) 1389 | 1390 | --- 1391 | 1392 | 1393 | 1394 | ## 🛠️ 工具介绍 1395 | 1396 | 以下是可以使用 GPT-4o 模型生成图片的应用: 1397 | 1398 | - **💬 [ChatGPT](https://chatgpt.com):** OpenAI官方出品,可使用 GPT-4o 生成高质量图片,支持多风格、多细节控制,适合创意表达与内容创作。 1399 | 1400 | - **🎬 [Sora](https://sora.com):** OpenAI官方出品,可通过 GPT-4o 生成逼真图像,支持图文结合、场景重建,适用于影视、动画等视觉创意场景。 1401 | 1402 | 1403 | 1404 | ## 💡 提示词技巧 1405 | 1406 | 1. [提示词高手们到底是怎么发现 GPT-4o 画图新玩法的?](https://baoyu.io/blog/gpt-4-image-generation-new-tricks) by [@dotey](https://x.com/dotey) 1407 | 2. [Prompt Engineering (PDF)](https://s.baoyu.io/files/2025-01-18-pdf-1-TechAI-Goolge-whitepaper_Prompt%20Engineering_v4-af36dcc7a49bb7269a58b1c9b89a8ae1.pdf) by Google 1408 | 3. [Prompt Engineering 简体中文翻译版](https://baoyu.io/blog/google-prompt-engineering-whitepaper) by [@dotey](https://x.com/dotey) 1409 | 1410 | 1411 | 1412 | ## 🤝 贡献案例 1413 | 1414 | 有两种参与贡献的方式,请阅读 [CONTRIBUTING.md](./CONTRIBUTING.md)。 1415 | 1416 | 1417 | 1418 | ## 🙏 致谢 1419 | 1420 | 本案例集的内容很大程度上依赖于 AI 社区在 Twitter/X 上分享的创意提示词和精彩视觉效果。我们向所有案例的贡献者表示诚挚的感谢。😊 1421 | 1422 | 特别感谢以下用户分享了他们鼓舞人心的作品 ✨: 1423 | 1424 | * [-Zho- (@ZHO_ZHO_ZHO)](https://x.com/ZHO_ZHO_ZHO) 1425 | * [Gizem Akdag (@gizakdag)](https://x.com/gizakdag) 1426 | * [宝玉 (@dotey)](https://x.com/dotey) 1427 | * [balconychy(贝壳里奇) (@balconychy)](https://x.com/balconychy) 1428 | * [Daniel (@0xdlk)](https://x.com/0xdlk) 1429 | * [RichChat (@richardchang)](https://x.com/richardchang) 1430 | * [歸藏(guizang.ai) (@op7418)](https://x.com/op7418) 1431 | * [katon (@hellokaton)](https://x.com/hellokaton) 1432 | * [Berryxia.AI (@berryxia_ai)](https://x.com/berryxia_ai) 1433 | * [Ege (@egeberkina)](https://x.com/egeberkina) 1434 | * [Brett (@BrettFromDJ)](https://x.com/BrettFromDJ) 1435 | * [89'S (@M_w14_)](https://x.com/M_w14_) 1436 | * [jiamimao 猫叔 (@jiamimaodashu)](https://x.com/jiamimaodashu) 1437 | * [Amira Zairi (@azed_ai)](https://x.com/azed_ai) 1438 | * [Umesh (@umesh_ai)](https://x.com/umesh_ai) 1439 | * [Michael Rabone (@michaelrabone)](https://x.com/michaelrabone) 1440 | * [gnrly.xyz (@gnrlyxyz)](https://x.com/gnrlyxyz) 1441 | * [f-is-h (@f-is-h)](https://github.com/f-is-h) 1442 | * [Madpencil (@madpencil_)](https://x.com/madpencil_) 1443 | * [Hewar (@hewarsaber)](https://x.com/hewarsaber) 1444 | * 以及其他可能通过转推或间接分享而被收录其提示词的创作者们。 1445 | 1446 | 如果您的作品被收录在此,而您希望更改署名或将其移除,请随时与我们联系。✉️ 1447 | 1448 | [⬆️ 返回顶部](#readme-top) 1449 | 1450 | 1451 | 1452 | ## 🌟 Star历史 1453 | 1454 | [![Star History Chart](https://api.star-history.com/svg?repos=jamez-bondos/awesome-gpt4o-images&type=Date)](https://www.star-history.com/#jamez-bondos/awesome-gpt4o-images&Date) 1455 | 1456 | [⬆️ 返回顶部](#readme-top) 1457 | -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- 1 | 2 | # Awesome GPT-4o Images ✨ 3 | 4 | [![English](https://img.shields.io/badge/English-Click-yellow)](README_en.md) 5 | [![简体中文](https://img.shields.io/badge/简体中文-点击查看-orange)](README.md) 6 | 7 | GitHub stars 8 | 9 | 10 | 🎉 Welcome to the curated collection of images generated by GPT-4o! 11 | 12 | This repo gathers striking examples produced by OpenAI's newest multimodal model, GPT‑4o. 13 | 14 | Most examples come from Twitter/X 🐦. May they spark ideas 💡 and turbo‑charge your creativity 🚀. 15 | 16 | → 喜欢就点 Star 支持! / Smash that ⭐ if you like it! 17 | 18 | 19 | ## Contents 20 | 21 | - [🎨 What is GPT‑4o](#gpt4o-toc) 22 | - [📖 Example Directory](#example-toc) 23 | - [🛠️ Tools](#tools-toc) 24 | - [💡 Prompting Tips](#prompting-toc) 25 | - [🤝 How to Contribute](#contribute-toc) 26 | - [🙏 Acknowledgements](#acknowledgements-toc) 27 | - [🌟 Star History](#starhistory-toc) 28 | 29 | 30 | ## 🎨 What is GPT‑4o 31 | 32 | GPT‑4o is a multimodal model that not only turns text prompts into high‑quality images but also offers image‑to‑image editing—enabling targeted retouching, style transfer, and multi‑image blending. 33 | 34 | - 🧠 Multimodal comprehension: Simultaneously parses text and images to capture creative intent with precision 35 | - ✍️ Accurate rendering: Handles complex prompts and rapidly produces high‑quality images 36 | - 🎨 Diverse styles: Ghibli, painterly, pixel art, 3D plush, and more—pick your favorite 37 | - 🖼️ Realistic composition: Spatial depth, perspective, and lighting that feel authentic 38 | - ✏️ Easy post‑editing: Swap backgrounds, tweak details—seamless for second‑round creation 39 | - ⚡️ Lightning‑fast interaction: Shorter response times for real‑time ideation and iteration 40 | 41 | 42 | 43 | --- 44 | 45 | 46 | ## 📖 Example Directory 47 | 48 | **Note on Prompts:** For accuracy and reproducibility, prompts are provided in their original language (Chinese or English) as used for generation. 49 | 50 | * [Example 68: Futuristic Logo Trading Card (by @hewarsaber)](#example-68-futuristic-logo-trading-card-by-hewarsaber) 51 | * [Example 67: Ultra-realistic 3D Game (by @ZHO_ZHO_ZHO)](#example-67-ultra-realistic-3d-game-by-zho_zho_zho) 52 | * [Example 66: Creative Silk Universe (by @ZHO_ZHO_ZHO)](#example-66-creative-silk-universe-by-zho_zho_zho) 53 | * [Example 65: Trompe-l'œil Three-Dimensional Spatial Art (by @madpencil_)](#example-65-trompe-lœil-three-dimensional-spatial-art-by-madpencil_) 54 | * [Example 64: Steampunk Mechanical Fish (by @f-is-h)](#example-64-steampunk-mechanical-fish-by-f-is-h) 55 | * [Example 63: Emoji Cream Popsicle (by @ZHO_ZHO_ZHO)](#example-63-emoji-cream-popsicle-by-zho_zho_zho) 56 | * [Example 62: Kawaii Enamel Pin (by @gnrlyxyz)](#example-62-kawaii-enamel-pin-by-gnrlyxyz) 57 | * [Example 61: Fake Tweet Screenshot (Einstein) (by @egeberkina)](#example-61-fake-tweet-screenshot-einstein-by-egeberkina) 58 | * [Example 60: Emoji Tufted Rug (by @gizakdag)](#example-60-emoji-tufted-rug-by-gizakdag) 59 | * [Example 59: Colorful Vector Art Poster (by @michaelrabone)](#example-59-colorful-vector-art-poster-by-michaelrabone) 60 | * [Example 58: Cloud Art (by @umesh_ai)](#example-58-cloud-art-by-umesh_ai) 61 | * [Example 57: 8-Bit Pixel Icon (by @egeberkina)](#example-57-8-bit-pixel-icon-by-egeberkina) 62 | * [Example 56: Miniature 3D Building (by @dotey)](#example-56-miniature-3d-building-by-dotey) 63 | * [Example 55: Low-Poly 3D Render (by @azed_ai)](#example-55-low-poly-3d-render-by-azed_ai) 64 | * [Example 54: "Extremely Ordinary" iPhone Selfie (Eason & Nicholas) (by @jiamimaodashu)](#example-54-extremely-ordinary-iphone-selfie-eason--nicholas-by-jiamimaodashu) 65 | * [Example 53: Emoji Inflatable Cushion (by @gizakdag)](#example-53-emoji-inflatable-cushion-by-gizakdag) 66 | * [Example 52: Paper Craft Style Emoji Icon (by @egeberkina)](#example-52-paper-craft-style-emoji-icon-by-egeberkina) 67 | * [Example 51: Passport Entry Stamp (Rome) (by @M_w14_)](#example-51-passport-entry-stamp-by-m_w14_) 68 | * [Example 50: Physical Destruction Effect Card (Lara Croft) (by @op7418)](#example-50-physical-destruction-effect-card-lara-croft-by-op7418) 69 | * [Example 49: Fashion Magazine Cover Style (by @dotey)](#example-49-fashion-magazine-cover-style-by-dotey) 70 | * [Example 48: Voxel Style 3D Icon Conversion (by @BrettFromDJ)](#example-48-voxel-style-3d-icon-conversion-by-brettfromdj) 71 | * [Example 47: ESC Keycap Miniature Diorama (by @egeberkina)](#example-47-esc-keycap-miniature-diorama-by-egeberkina) 72 | * [Example 46: Happy Capsule Creation (by @ZHO_ZHO_ZHO)](#example-46-happy-capsule-creation-by-zho_zho_zho) 73 | * [Example 45: 3D Q-version University Anthropomorphic Mascot (by @dotey)](#example-45-3d-q-version-university-anthropomorphic-mascot-by-dotey) 74 | * [Example 44: RPG-Style Character Card Creation (by @berryxia_ai)](#example-44-rpg-style-character-card-creation-by-berryxia_ai) 75 | * [Example 43: Q-version Cute Matryoshka Dolls (Girl with a Pearl Earring) (by @ZHO_ZHO_ZHO)](#example-43-q-version-cute-matryoshka-dolls-girl-with-a-pearl-earring-by-zho_zho_zho) 76 | * [Example 42: 3D Q-version Couple Snow Globe (by @balconychy)](#example-42-3d-q-version-couple-snow-globe-by-balconychy) 77 | * [Example 41: Miniature Diorama (Monkey King Fights White Bone Demon) (by @dotey)](#example-41-miniature-diorama-monkey-king-fights-white-bone-demon-by-dotey) 78 | * [Example 40: Japanese-style Two-Panel Manga (Angry Girl President) (by @hellokaton)](#example-40-japanese-style-two-panel-manga-angry-girl-president-by-hellokaton) 79 | * [Example 39: Cartoon Illustration (Computer Head) (by @dotey)](#example-39-cartoon-illustration-computer-head-by-dotey) 80 | * [Example 38: Hand-drawn Infographic Card (IP) (by @dotey)](#example-38-hand-drawn-infographic-card-ip-by-dotey) 81 | * [Example 37: Social Media Post Doodle Overlay (by @op7418)](#example-37-social-media-post-doodle-overlay-by-op7418) 82 | * [Example 36: Minimalist 3D Illustration (Text Prompt) (by @dotey)](#example-36-minimalist-3d-illustration-text-prompt-by-dotey) 83 | * [Example 35: Fluffy Jack-o'-lantern (by gizakdag)](#example-35-fluffy-jack-o-lantern-by-gizakdag) 84 | * [Example 34: Hand-drawn Infographic Card (Cognition) (by @dotey)](#example-34-hand-drawn-infographic-card-cognition-by-dotey) 85 | * [Example 33: Family Wedding Photo (Q-version) (by @balconychy)](#example-33-family-wedding-photo-q-version-by-balconychy) 86 | * [Example 32: Paper Cutout Style Job Ad (by @dotey)](#example-32-paper-cutout-style-job-ad-by-dotey) 87 | * [Example 31: Anime Sticker Collection (by @richardchang)](#example-31-anime-sticker-collection-by-richardchang) 88 | * [Example 30: 35mm Film Style Flying Island (by @dotey)](#example-30-35mm-film-style-flying-island-by-dotey) 89 | * [Example 29: Famous Painting Character OOTD (by @ZHO_ZHO_ZHO)](#example-29-famous-painting-character-ootd-by-zho_zho_zho) 90 | * [Example 28: Flat Sticker Design (by @ZHO_ZHO_ZHO)](#example-28-flat-sticker-design-by-zho_zho_zho) 91 | * [Example 27: Q-version Emoji Sticker Pack Creation (by @dotey)](#example-27-q-version-emoji-sticker-pack-creation-by-dotey) 92 | * [Example 26: Famous Painting Character Cereal Ad (by @ZHO_ZHO_ZHO)](#example-26-famous-painting-character-cereal-ad-by-zho_zho_zho) 93 | * [Example 25: Minimalist 3D Illustration (by @0xdlk)](#example-25-minimalist-3d-illustration-by-0xdlk) 94 | * [Example 24: Funko Pop Figure Creation (by @dotey)](#example-24-funko-pop-figure-creation-by-dotey) 95 | * [Example 23: "Titanic" Pose Parody (by @balconychy)](#example-23-titanic-pose-parody-by-balconychy) 96 | * [Example 22: Xiaohongshu Cover Image (by @balconychy)](#example-22-xiaohongshu-cover-image-by-balconychy) 97 | * [Example 21: Stick Figure Emoji Pack (by @ZHO_ZHO_ZHO)](#example-21-stick-figure-emoji-pack-by-zho_zho_zho) 98 | * [Example 20: Four-Panel Manga (Theory of Relativity) (by @dotey)](#example-20-four-panel-manga-theory-of-relativity-by-dotey) 99 | * [Example 19: Textbook Illustration Redraw (by @balconychy)](#example-19-textbook-illustration-redraw-by-balconychy) 100 | * [Example 18: Pixar 3D Style (by AnimeAI)](#example-18-pixar-3d-style-by-animeai) 101 | * [Example 17: Digimon Style Image (by @ZHO_ZHO_ZHO)](#example-17-digimon-style-image-by-zho_zho_zho) 102 | * [Example 16: Pudding Slot Machine (by @ZHO_ZHO_ZHO)](#example-16-pudding-slot-machine-by-zho_zho_zho) 103 | * [Example 15: Satirical Poster Generation (by @ZHO_ZHO_ZHO)](#example-15-satirical-poster-generation-by-zho_zho_zho) 104 | * [Example 14: "One Piece" Themed Figure Creation (by @dotey)](#example-14-one-piece-themed-figure-creation-by-dotey) 105 | * [Example 13: Photo to 3D Q-version Style (by @dotey)](#example-13-photo-to-3d-q-version-style-by-dotey) 106 | * [Example 12: 3D Couple Jewelry Box Figurine (by @dotey)](#example-12-3d-couple-jewelry-box-figurine-by-dotey) 107 | * [Example 11: PS2 Game Cover (GTA x Shrek) (by @dotey)](#example-11-ps2-game-cover-gta-x-shrek-by-dotey) 108 | * [Example 10: Satirical Cartoon Generation (by @dotey)](#example-10-satirical-cartoon-generation-by-dotey) 109 | * [Example 9: Famous Painting as Helium Balloon (by @ZHO_ZHO_ZHO)](#example-9-famous-painting-as-helium-balloon-by-zho_zho_zho) 110 | * [Example 8: Lego Collectible Figure (by @ZHO_ZHO_ZHO)](#example-8-lego-collectible-figure-by-zho_zho_zho) 111 | * [Example 7: Personalized Room Design (by @ZHO_ZHO_ZHO)](#example-7-personalized-room-design-by-zho_zho_zho) 112 | * [Example 6: Character Stepping Through Portal (by @dotey)](#example-6-character-stepping-through-portal-by-dotey) 113 | * [Example 5: Ghibli Style (by AnimeAI)](#example-5-ghibli-style-by-animeai) 114 | * [Example 4: Q-version Chinese Wedding Scene (by @balconychy)](#example-4-q-version-chinese-wedding-scene-by-balconychy) 115 | * [Example 3: Vintage Promotional Poster (by @dotey)](#example-3-vintage-promotional-poster-by-dotey) 116 | * [Example 2: 3D Polaroid Breakout Effect (by @dotey)](#example-2-3d-polaroid-breakout-effect-by-dotey) 117 | * [Example 1: Q-version Proposal Scene (by @balconychy)](#example-1-q-version-proposal-scene-by-balconychy) 118 | 119 | --- 120 | 121 | ## Example 68: Futuristic Logo Trading Card (by [@hewarsaber](https://x.com/hewarsaber)) 122 | 123 | [Source Link](https://x.com/hewarsaber/status/1912933875166171515) 124 | 125 | Futuristic trading card featuring the Tesla logo 126 | 127 | **Prompt:** 128 | ``` 129 | { 130 | "prompt": "A futuristic trading card with a dark, moody neon aesthetic and soft sci-fi lighting. The card features a semi-transparent, rounded rectangle with slightly muted glowing edges, appearing as if made of holographic glass. At the center is a large glowing logo of {{logo}}, with no additional text or label, illuminated with a smooth gradient of {{colors}}, but not overly bright. The reflections on the card surface should be subtle, with a slight glossy finish catching ambient light. The background is a dark carbon fiber texture or deep gradient with soft ambient glows bleeding into the edges. Add subtle light rays streaming down diagonally from the top, giving the scene a soft cinematic glow. Apply light motion blur to the edges and reflections to give the scene a sense of depth and energy, as if it's part of a high-end tech animation still. Below the card, include realistic floor reflections that mirror the neon edges and logo—slightly diffused for a grounded, futuristic look. Text elements are minimal and softly lit: top-left shows '{{ticker}}', top-right has a stylized signature, and the bottom displays '{{company_name}}' with a serial number '{{card_number}}', a revenue badge reading '{{revenue}}', and the year '{{year}}'. Typography should have a faint glow with slight blurring, and all elements should feel premium, elegant, and softly illuminated—like a high-end cyberpunk collectible card.", 131 | "style": { 132 | "lighting": "Neon glow, soft reflections", 133 | "font": "Modern sans-serif, clean and minimal", 134 | "layout": "Centered, structured like a digital collectible card", 135 | "materials": "Glass, holographic plastic, glowing metal edges" 136 | }, 137 | "parameters": { 138 | "logo": "Tesla logo", 139 | "ticker": "TSLA", 140 | "company_name": "Tesla Inc.", 141 | "card_number": "#0006", 142 | "revenue": "$96.8B", 143 | "year": "2025", 144 | "colors": [ 145 | "red", 146 | "white", 147 | "dark gray" 148 | ] 149 | }, 150 | "medium": "3D render, high-resolution digital art", 151 | "size": "1080px by 1080px" 152 | } 153 | ``` 154 | *Note: The prompt uses a JSON-like structure to describe card elements. Modify values in the `parameters` object (like logo, ticker, company_name, colors, etc.) to customize the card. For custom logos, specify in `parameters.logo` (e.g., "Framer logo (attached image)") and upload the image.* 155 | 156 | **Reference Image Required:** (Optional) Upload a custom logo image. 157 | 158 | [⬆️ Back to Directory](#example-toc) 159 | 160 | 161 | ## Example 67: Ultra-realistic 3D Game (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO) ) 162 | 163 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1913648013144137840) 164 | 165 | Ultra-realistic 3D 166 | 167 | **Prompt:** 168 | ``` 169 | Ultra-realistic 3D rendered image that replicates the character design of Natasha from Command & Conquer: Red Alert 3 in 2008, following the original model exactly. The scene is set in a dim and cluttered bedroom from the year 2008. The character is sitting on the carpet, facing an old-fashioned television that is playing Command & Conquer: Red Alert 3 and a game console controller. 170 | The entire room is filled with a nostalgic atmosphere of the year 2008: snack packaging bags, soda cans, posters, and tangled wires are everywhere. Natasha Volkova is captured in the moment of turning her head, looking back at the camera over her shoulder. There is an innocent smile on her iconic ethereally beautiful face. Her upper body is slightly twisted, with a natural dynamic, as if she is reacting to being startled by the flash. 171 | The flash slightly overexposes her face and clothes, making her silhouette stand out more prominently in the dimly lit room. The whole photo appears raw and natural. The strong contrast between light and dark casts deep shadows behind her. The image is full of tactile feel, with a simulated texture that resembles an authentic film snapshot from 2008. 172 | ``` 173 | 174 | **Example Submitted by:** [wowmarcomei](https://github.com/wowmarcomei) 175 | 176 | [⬆️ Back to Directory](#example-toc) 177 | 178 | 179 | ## Example 66: Creative Silk Universe (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO) ) 180 | 181 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1914864217867608175) 182 | 183 | Silk Universe-Creative Universe 184 | 185 | **Prompt:** 186 | ``` 187 | Transform the ❄️ into a soft 3D object with a silk texture. The entire surface of the object is wrapped in smooth and flowing silk fabric, featuring surreal wrinkle details, soft highlights, and shadows. The object gently floats in the center of a clean light gray background, creating a light and elegant atmosphere. The overall style is surreal, tactile, and modern, conveying a sense of comfort and refined playfulness. Studio lighting, high-resolution rendering. 188 | ``` 189 | *You can replace the [❄️] in the prompt words with your target value* 190 | 191 | **Example Submitted by:** [wowmarcomei](https://github.com/wowmarcomei) 192 | 193 | [⬆️ Back to Directory](#example-toc) 194 | 195 | 196 | ## Example 65: Trompe-l'œil Three-Dimensional Spatial Art (by [@madpencil_](https://x.com/madpencil_) ) 197 | 198 | [Source Link](https://x.com/madpencil_/status/1915099250079469907) 199 | 200 | Three-dimensional illusion of a figure stepping out from the screen. 201 | 202 | **Prompt:** 203 | ``` 204 | Trompe l'oeil illusion of A (subject) (attire) steps out of a large screen displaying xyz social media interface. The screen shows the username "@" 1K likes, and 12- 20 comments, with floating emojis (heart-eyes, smiley) around it. your preferred background.. 205 | ``` 206 | 207 | *Note: You can replace the [Theme/Dress Code] and [Heart Eyes Emoji, Smiling Face Emoji] in the prompt words.* 208 | 209 | **Example Submitted by:** [wowmarcomei](https://github.com/wowmarcomei) 210 | 211 | [⬆️ Back to Directory](#example-toc) 212 | 213 | 214 | ## Example 64: Steampunk Mechanical Fish (by [@f-is-h](https://github.com/f-is-h)) 215 | 216 | [Source Link](https://github.com/f-is-h/f-is-h/blob/main/images/streampank-fish-4.png) 217 | 218 | Steampunk-style mechanical fish with brass body, visible gear mechanisms and multi-faceted ruby eyes 219 | 220 | **Prompt:** 221 | ``` 222 | A steampunk-style mechanical fish with a brass body and clearly visible gear mechanisms when in motion. 223 | Its mechanical teeth can be slightly seen, neatly arranged and closed, with both upper and lower teeth visible. Each tooth is triangular in shape and made of diamond material. 224 | The tail fin has a metal wire mesh structure, while other fins are made of semi-transparent amber-colored glass with some subtle bubbles inside. 225 | The eyes are multi-faceted rubies, with clearly visible reflective shine. 226 | The fish has "f-is-h" text clearly visible on its body, with all lowercase letters and careful attention to the hyphen placement. 227 | The image is square, showing the entire fish in the center of the frame, with its head pointing to the right. There is adequate white space around the fish, with more space on the left and right sides. The background has subtle steampunk-style gear patterns. 228 | The entire fish looks very cool. This is a high-definition image with extremely rich details and unique texture and aesthetics. The image should not be too dark. 229 | ``` 230 | 231 | *Note: This image showcases an excellent combination of steampunk style and metallic textures, presenting intricate mechanical details and a retro-futuristic aesthetic.* 232 | 233 | [⬆️ Back to Directory](#example-toc) 234 | 235 | 236 | ## Example 63: Emoji Cream Popsicle (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 237 | 238 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1914574278911000967) 239 | 240 | Strawberry-shaped cream popsicle with a cream swirl on top, cute Q-version 3D style 241 | 242 | **Prompt:** 243 | ``` 244 | Turn 【🍓】 into a cream popsicle, with cream swirling deliciously on top, suspended at a 45-degree angle in the air, cute Q-version 3D style, solid background with matching color scheme. 245 | ``` 246 | 247 | *Note: The 【🍓】 emoji in the prompt can be replaced with other emojis.* 248 | 249 | [⬆️ Back to Directory](#example-toc) 250 | 251 | 252 | ## Example 62: Kawaii Enamel Pin (by [@gnrlyxyz](https://x.com/gnrlyxyz)) 253 | 254 | [Source Link](https://x.com/gnrlyxyz/status/1914303110853583302) 255 | 256 | Kawaii enamel pins of several pop culture characters (e.g., Terminator, Breaking Bad protagonist) 257 | 258 | **Prompt:** 259 | ``` 260 | Turn the subject in the attached image into a kawaii enamel pin. Use glossy metal outlines and vibrant enamel fill. No extra added features. Square mockup format. White background. 261 | ``` 262 | 263 | **Reference Image Required:** Needs a photo of a person or object as the subject for transformation. 264 | 265 | **Example Submitted by:** [StevenSong-sTs](https://github.com/StevenSong-sTs) 266 | 267 | [⬆️ Back to Directory](#example-toc) 268 | 269 | 270 | ## Example 61: Fake Tweet Screenshot (Einstein) (by [@egeberkina](https://x.com/egeberkina)) 271 | 272 | [Source Link](https://x.com/egeberkina/status/1914299716394778713) 273 | 274 | Hyperrealistic Twitter post screenshot by Albert Einstein after finishing the theory of relativity, with chalkboard and equations in the background, liked by Nikola Tesla 275 | 276 | **Prompt:** 277 | ``` 278 | a hyper realistic twitter post by Albert Einstein right after finishing the theory of relativity. include a selfie where you can clearly see scribbled equations and a chalkboard in the background. have it visible that the post was liked by Nikola Tesla 279 | ``` 280 | 281 | [⬆️ Back to Directory](#example-toc) 282 | 283 | 284 | ## Example 60: Emoji Tufted Rug (by [@gizakdag](https://x.com/gizakdag)) 285 | 286 | [Source Link](https://x.com/gizakdag/status/1913925062568144924) 287 | 288 | Hand-tufted rug in the shape of a dinosaur emoji 🦖 289 | 290 | **Prompt:** 291 | ``` 292 | Create an image of a colorful, hand-tufted rug in the shape of 🦖 emoji, placed on a simple floor background. The rug has a bold, playful design with soft, fluffy texture and thick yarn details. Shot from above, in natural daylight, with a slightly quirky, DIY aesthetic. Vibrant colors, cartoonish outlines, and tactile, cozy material—similar to handmade tufted art rugs. 293 | ``` 294 | 295 | *Note: The 🦖 emoji in the prompt can be replaced with other emojis.* 296 | 297 | [⬆️ Back to Directory](#example-toc) 298 | 299 | 300 | ## Example 59: Colorful Vector Art Poster (by [@michaelrabone](https://x.com/michaelrabone)) 301 | 302 | [Source Link](https://x.com/michaelrabone/status/1913865394139316291) 303 | 304 | Colorful vector art poster of London 305 | 306 | **Prompt:** 307 | ``` 308 | Barcelona Spain colourful summer vector art poster with big "BARCELONA" title at the top and smaller "SPAIN" title under 309 | ``` 310 | 311 | *Note: Replace the city and country names in the prompt (e.g., replace "Barcelona Spain" and the titles with "London United Kingdom" to generate the example image). This style prompt also works for food, movies, music, etc.* 312 | 313 | [⬆️ Back to Directory](#example-toc) 314 | 315 | 316 | ## Example 58: Cloud Art (by [@umesh_ai](https://x.com/umesh_ai)) 317 | 318 | [Source Link](https://x.com/umesh_ai/status/1913628737872027805) 319 | 320 | Dragon formed by clouds above the Great Wall 321 | 322 | **Prompt:** 323 | ``` 324 | Generate image: A photograph captures a daytime scene with a [SUBJECT/OBJECT] formed by scattered clouds in the sky, positioned above a [LOCATION] 325 | ``` 326 | 327 | *Note: The `[SUBJECT/OBJECT]` (shape formed by clouds) and `[LOCATION]` placeholders in the prompt can be replaced. The example image uses 'chinese dragon' as the subject and 'The Great Wall' as the location.* 328 | 329 | 330 | [⬆️ Back to Directory](#example-toc) 331 | 332 | 333 | ## Example 57: 8-Bit Pixel Icon (by [@egeberkina](https://x.com/egeberkina)) 334 | 335 | [Source Link](https://x.com/egeberkina/status/1913654508330058064) 336 | 337 | 8-bit pixel art style burger icon 338 | 339 | **Prompt:** 340 | ``` 341 | Create a minimalist 8-bit pixel logo of [🍔], centered on a pure white background. Use a limited retro color palette with pixelated detailing, sharp edges, and clean blocky forms. The logo should be simple, iconic, and clearly recognizable in pixel art style — inspired by classic arcade game aesthetics. 342 | ``` 343 | 344 | *Note: The `[🍔]` emoji in the prompt can be replaced with other emojis or subjects.* 345 | 346 | [⬆️ Back to Directory](#example-toc) 347 | 348 | 349 | ## Example 56: Miniature 3D Building (by [@dotey](https://x.com/dotey)) 350 | 351 | [Source Link](https://x.com/dotey/status/1913759515700285569) 352 | 353 | 3D Q-version miniature Starbucks cafe building shaped like a coffee cup 354 | 355 | **Prompt:** 356 | ``` 357 | 3D Q-version mini style, a fun-filled miniature Starbucks cafe that looks like a giant takeaway coffee cup, complete with a lid and straw. The building has two floors, with large glass windows clearly displaying the warm and exquisite interior design: wooden furniture, warm lighting, and busy baristas. Cute small figures walk or sit on the street, surrounded by benches, streetlights, and potted plants, creating a charming city corner. The overall style is urban miniature landscape, rich in detail, realistic, with soft lighting presenting a cozy afternoon feel. 358 | ``` 359 | *Note: You can ask the AI to generate similar prompts for other buildings by referencing the prompt above. For example: "Referencing the prompt above, write a similar prompt for [Dunkin' Donuts], shaped like a [donut]".* 360 | 361 | [⬆️ Back to Directory](#example-toc) 362 | 363 | 364 | ## Example 55: Low-Poly 3D Render (by [@azed_ai](https://x.com/azed_ai)) 365 | 366 | [Source Link](https://x.com/azed_ai/status/1912084257918595342) 367 | 368 | Low-poly style 3D render of a lizard 369 | 370 | **Prompt:** 371 | ``` 372 | A low-poly 3D render of a [subject], built from clean triangular facets with flat [color1] and [color2] surfaces. The environment is a stylized digital desert with minimal geometry and ambient occlusion. 373 | ``` 374 | 375 | *Note: The [subject] (the object to draw), [color1], and [color2] (colors) placeholders in the prompt can be replaced to generate different objects. For the example image shown, the subject is 'lizard', and colors 1/2 are 'olive green' and 'dusty brown' respectively.* 376 | 377 | [⬆️ Back to Directory](#example-toc) 378 | 379 | 380 | ## Example 54: "Extremely Ordinary" iPhone Selfie (Eason & Nicholas) (by [@jiamimaodashu](https://x.com/jiamimaodashu)) 381 | 382 | [Source Link](https://x.com/jiamimaodashu/status/1912653073190879410) 383 | 384 | 'Extremely ordinary' iPhone selfie of Eason Chan and Nicholas Tse by Victoria Harbour, Hong Kong 385 | 386 | **Prompt:** 387 | ``` 388 | Please draw an extremely ordinary iPhone selfie, lacking a clear subject or sense of composition, like a snapshot taken casually. The photo has slight motion blur, and uneven sunlight or indoor lighting causes slight overexposure. The angle is awkward, the composition is chaotic, presenting an overall sense of deliberate mediocrity - like a selfie accidentally taken while pulling the phone out of a pocket. The subjects are Eason Chan and Nicholas Tse, at night, next to the Hong Kong Convention and Exhibition Centre, beside Victoria Harbour in Hong Kong. 389 | ``` 390 | 391 | *Note: This prompt aims to generate a photo that looks very casual, even slightly like an accidental snapshot.* 392 | 393 | [⬆️ Back to Directory](#example-toc) 394 | 395 | 396 | ## Example 53: Emoji Inflatable Cushion (by [@gizakdag](https://x.com/gizakdag)) 397 | 398 | [Source Link](https://x.com/gizakdag/status/1912858535643197927) 399 | 400 | Pleading face emoji designed as an inflatable cushion 401 | 402 | **Prompt:** 403 | ``` 404 | Create a high-resolution 3D render of [🥹] designed as an inflatable, puffy object. The shape should appear soft, rounded, and air-filled — like a plush balloon or blow-up toy. Use a smooth, matte texture with subtle fabric creases and stitching to emphasize the inflatable look. The form should be slightly irregular and squishy, with gentle shadows and soft lighting that highlight volume and realism. Place it on a clean, minimal background (light gray or pale blue), and maintain a playful, sculptural aesthetic. 405 | ``` 406 | 407 | *Note: The [🥹] emoji in the prompt can be replaced with other emojis.* 408 | 409 | [⬆️ Back to Directory](#example-toc) 410 | 411 | 412 | ## Example 52: Paper Craft Style Emoji Icon (by [@egeberkina](https://x.com/egeberkina)) 413 | 414 | [Source Link](https://x.com/egeberkina/status/1912521263085482464) 415 | 416 | Paper craft style fire emoji icon 417 | 418 | **Prompt:** 419 | ``` 420 | A paper craft-style "🔥" floating on a pure white background. The emoji is handcrafted from colorful cut paper with visible textures, creases, and layered shapes. It casts a soft drop shadow beneath, giving a sense of lightness and depth. The design is minimal, playful, and clean — centered in the frame with lots of negative space. Use soft studio lighting to highlight the paper texture and edges. 421 | ``` 422 | 423 | *Note: The "🔥" emoji in the prompt can be replaced with other emojis.* 424 | 425 | [⬆️ Back to Directory](#example-toc) 426 | 427 | 428 | ## Example 51: Passport Entry Stamp (by [@M_w14_](https://x.com/M_w14_)) 429 | 430 | [Source Link](https://x.com/M_w14_/status/1912146666410459618) 431 | 432 | Passport entry stamp for Rome, Italy featuring the Colosseum 433 | 434 | **Prompt (Structure by @M_w14_):** 435 | ``` 436 | Create a realistic passport page with an entry stamp for [{City}, {Country}]. The stamp should say "Welcome to {City}" in bold English, designed in a round or oval shape with decorative borders. Include the word "ARRIVAL" and a fictional date like "15 APR 2025" Incorporate a subtle silhouette of {Main Landmark} as a background detail within the stamp. Use deep blue or red ink with light smudges for added realism. The stamp should appear slightly angled, as if hand-pressed. The passport page should show visible paper texture and security patterns. 437 | ``` 438 | 439 | *Note: You can replace the city, country, landmark, and date placeholders. The example image uses "Rome", "Italy", "Colosseum", and "13 APR 2025" (date differs slightly from the base prompt structure).* 440 | 441 | [⬆️ Back to Directory](#example-toc) 442 | 443 | 444 | ## Example 50: Physical Destruction Effect Card (Lara Croft) (by [@op7418](https://x.com/op7418)) 445 | 446 | [Source Link 1](https://x.com/op7418/status/1912782048160542886) 447 | [Source Link 2](https://x.com/hc_dsn/status/1912367201476309396) 448 | 449 | Lara Croft breaking through the border of an 'Archaeological Expeditions' card with physical destruction effects 450 | 451 | **Prompt:** 452 | ``` 453 | A hyper-realistic, cinematic illustration depicting Lara Croft dynamically crashing through the border of an "Archaeological Expeditions" trading card. She is mid-leap or swinging on a rope, clad in iconic adventure gear, possibly firing dual pistols with muzzle flares helping to shatter the card's ancient stone-carved border, creating visible dimensional break effects around the breach like energy cracks and spatial distortion, sending dust and debris flying. Her body bursts forward energetically with significant motion depth, breaking the card's plane, while the card interior (background) depicts a lush jungle ruin or trap-filled tomb interior. Card debris mixes with crumbling stone, flying vines, ancient coin fragments, and spent bullet casings. The title "ARCHAEOLOGICAL EXPEDITIONS" and the name "LARA CROFT" (with a stylized artifact icon) are visible on the remaining cracked and weathered parts of the card. Adventurous, dynamic lighting highlights her athleticism and the perilous environment. 454 | ``` 455 | *Note: The original tweet mentioned key terms are "dimensional break effects" and "motion depth". The prompt above is a reconstruction based on the description.* 456 | 457 | [⬆️ Back to Directory](#example-toc) 458 | 459 | 460 | ## Example 49: Fashion Magazine Cover Style (by [@dotey](https://x.com/dotey)) 461 | 462 | [Source Link](https://x.com/dotey/status/1912536019905233194) 463 | 464 | Fashion magazine cover style photo of a woman in pink cheongsam with flowers and butterflies 465 | 466 | **Prompt:** 467 | ``` 468 | A beautiful woman wearing a pink cheongsam, floral headwear with colorful flowers in her hair, and an elegant white lace collar around her neck. She is holding large butterflies in one hand. The photography style features high-definition details, resembling a fashion magazine cover design. The text "FASHION DESIGN" is displayed at the top center of the photo. The background is a minimalist, light gray solid color, designed to highlight the model. 469 | ``` 470 | 471 | [⬆️ Back to Directory](#example-toc) 472 | 473 | 474 | ## Example 48: Voxel Style 3D Icon Conversion (by [@BrettFromDJ](https://x.com/BrettFromDJ)) 475 | 476 | [Source Link](https://x.com/BrettFromDJ/status/1910387413404234076) 477 | 478 | 3D voxel-style icons 479 | 480 | **Prompt:** 481 | ``` 482 | Take the icon on the right and transform it into a voxel 3d icon like the icons in the left image. Octane render. 8k. 483 | ``` 484 | 485 | *Note: The tweet author provides a reference image for best results, recommend downloading and using it. When uploading, upload the reference image first, then the icon to be converted.* 486 | 487 | **Reference Image Required:** Requires uploading two images: a reference image showing the desired voxel style icons (like the one provided by the tweet author), and the original icon to be transformed. 488 | 489 | [⬆️ Back to Directory](#example-toc) 490 | 491 | 492 | ## Example 47: ESC Keycap Miniature Diorama (by [@egeberkina](https://x.com/egeberkina)) 493 | 494 | [Source Link](https://x.com/egeberkina/status/1911368319212408926) 495 | 496 | Miniature computer setup diorama inside an ESC keycap 497 | 498 | **Prompt:** 499 | ``` 500 | A hyper-realistic isometric 3D render of a miniature computer setup inside a translucent mechanical keyboard keycap, specifically placed on the ESC key of a real matte-finished mechanical keyboard. Inside the keycap, a tiny figure sits in a modern ergonomic chair, wearing a cozy textured hoodie, working at a glowing ultra-realistic computer screen. The environment is packed with lifelike miniature tech accessories: real-material desk lamps, monitors with reflections, tiny speaker grills, tangled cables, and ceramic mugs. The base of the scene is made of soil, rocks, and moss, with photorealistic textures and imperfections. The lighting inside the cap mimics natural morning sun, casting soft shadows and warm tones, while the outside has cold ambient reflections from the surrounding keyboard. The word “ESC” is subtly etched onto the top of the translucent keycap with a faint frosted glass effect — just barely visible depending on the angle. The surrounding keyboard keys like F1, Q, Shift, and CTRL are crisp, textured, and photorealistically lit. Shot as if taken with a high-end mobile phone camera, with shallow depth of field, perfect white balance, and cinematic detail. 501 | ``` 502 | 503 | [⬆️ Back to Directory](#example-toc) 504 | 505 | 506 | ## Example 46: Happy Capsule Creation (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 507 | 508 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1911724629460455896) 509 | 510 | Happy Capsule 511 | 512 | **Prompt:** 513 | ``` 514 | Title (large font): Quick-acting Happy Capsules 515 | 516 | A small pill with Starbucks green on top and transparent on the bottom, with the Starbucks logo printed on it and a lot of coffee beans inside 517 | 518 | Instructions (small font): Please take it when you are sad, three times a day, two pills at a time 519 | 520 | The purchase button is the same color as the pill, and the price below is $9. Please follow the doctor's advice and purchase as appropriate 521 | ``` 522 | 523 | [⬆️ Back to Directory](#example-toc) 524 | 525 | 526 | ## Example 45: 3D Q-version University Anthropomorphic Mascot (by [@dotey](https://x.com/dotey)) 527 | 528 | [Source Link](https://x.com/dotey/status/1911988003729203648) 529 | 530 | Anthropomorphic 3D Q-version cute girl mascot for Northwestern Polytechnical University, showcasing aerospace and maritime features 531 | 532 | **Prompt:** 533 | ``` 534 | 給【西北工业大学】画一个拟人化的3D Q版美少女形象,体现学校【航空航天航海三航】特色 535 | ``` 536 | *Note: The university name 【西北工业大学】 (Northwestern Polytechnical University) and characteristic description 【航空航天航海三航】 (Aeronautics, Astronautics, and Marine Technology - "Three Ais") within the square brackets can be replaced to generate anthropomorphic mascots for different universities.* 537 | 538 | [⬆️ Back to Directory](#example-toc) 539 | 540 | 541 | ## Example 44: RPG-Style Character Card Creation (by [@berryxia_ai](https://x.com/berryxia_ai)) 542 | 543 | [Source Link](https://x.com/berryxia_ai/status/1911334046724165905) 544 | 545 | RPG-style character card for a Designer 546 | 547 | **Prompt:** 548 | ``` 549 | Create a digital character card in RPG collectible style. 550 | The subject is a 【Programmer】, standing confidently with tools or symbols relevant to their job. 551 | Render it in 3D cartoon style, soft lighting, vivid personality. 552 | Include skill bars or stats like [Skill1 +x], [Skill2 +x, e.g., Creativity +10, UI/UX +8]. 553 | Add a title banner on top and a nameplate on the bottom. 554 | Frame the card with clean edges like a real figure box. 555 | Make the background fit the profession's theme. 556 | Colors: warm highlights, profession-matching hues. 557 | ``` 558 | 559 | Note: Replace the 【】 placeholder in the prompt with specifics like "Designer", "Doctor", etc. 560 | 561 | **Reference Image Required:** Optional. Can be generated based on profession/role description or use an uploaded photo as reference. 562 | 563 | [⬆️ Back to Directory](#example-toc) 564 | 565 | 566 | ## Example 43: Q-version Cute Matryoshka Dolls (Girl with a Pearl Earring) (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 567 | 568 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1911669883315818497) 569 | 570 | Q-version Girl with a Pearl Earring as Matryoshka dolls 571 | 572 | **Prompt:** 573 | ``` 574 | 把图片人物生成变成 Q 版可爱俄罗斯套娃🪆,大到小一共五个,放在精致的木桌上,横幅4:3比例 575 | ``` 576 | 577 | *Note: The aspect ratio description in the prompt has been slightly modified. See the source link for the original prompt.* 578 | 579 | **Reference Image Required:** Requires uploading a person's image as the subject for transformation (The original post used ['Girl with a Pearl Earring'](./references/Meisje_met_de_parel.jpg)). 580 | 581 | [⬆️ Back to Directory](#example-toc) 582 | 583 | 584 | ## Example 42: 3D Q-version Couple Snow Globe (by [@balconychy](https://x.com/balconychy)) 585 | 586 | [Source Link](https://x.com/balconychy/status/1909908568129655248) 587 | 588 | 3D Q-version couple inside a snow globe on a desk by a window 589 | 590 | **Prompt:** 591 | ``` 592 | 将附图中的人物转换成水晶球场景。 整体环境:水晶球放在窗户旁桌面上,背景模糊,暖色调。阳光透过球体,洒下点点金光,照亮了周围的黑暗。 水晶球内部:人物是可爱Q版3D造型,相互之间满眼的爱意。 593 | ``` 594 | 595 | **Reference Image Required:** A photo of a couple or another person. 596 | 597 | [⬆️ Back to Directory](#example-toc) 598 | 599 | 600 | ## Example 41: Miniature Diorama (Monkey King Fights White Bone Demon) (by [@dotey](https://x.com/dotey)) 601 | 602 | [Source Link](https://x.com/dotey/status/1911609122547449886) 603 | 604 | Miniature Q-version diorama of Journey to the West (Monkey King fights White Bone Demon) in tilt-shift photography style 605 | 606 | **Prompt:** 607 | ``` 608 | 微型立体场景呈现,运用移轴摄影的技法,呈现出Q版【孙悟空三打白骨精】场景 609 | ``` 610 | *Note: The Chinese text within the brackets 【孙悟空三打白骨精】 (Sun Wukong San Da Baigu Jing - Monkey King Thrice Defeats the White Bone Demon) in the prompt can be replaced with other Chinese scenes, such as "孙悟空大闹天宫" (Sun Wukong Da Nao Tiangong - Monkey King Wreaks Havoc in Heaven), "哪吒闹海" (Nezha Nao Hai - Nezha Fights the Sea Dragon), "武松打虎" (Wu Song Da Hu - Wu Song Fights the Tiger), "黛玉葬花" (Daiyu Zang Hua - Daiyu Buries Flowers), or "关云长过五关斩六将" (Guan Yunchang Guo Wu Guan Zhan Liu Jiang - Guan Yu Passes Five Gates and Slays Six Generals), according to the original tweet.* 611 | 612 | [⬆️ Back to Directory](#example-toc) 613 | 614 | 615 | ## Example 40: Japanese-style Two-Panel Manga (Angry Girl President) (by [@hellokaton](https://x.com/hellokaton)) 616 | 617 | [Source Link](https://x.com/hellokaton/status/1910900979194646959) 618 | 619 | Two-panel cute Japanese manga showing a girl president upset about a phone call, then angrily raising tariffs 620 | 621 | **Prompt:** 622 | ``` 623 | 创建一张日系萌系双格漫画,上下排列,主题:少女总统的工作日常。 624 | 625 | 角色形象: 将上传的附件转换为日系萌系卡通女生形象的风格,保留原图所有细节,如服饰(西装)、发型(明亮的金黄色)、五官等。 626 | 627 | 第一格: 628 | - 表情: 委屈巴巴,沮丧的表情,单手托腮 629 | - 文字框: “肿么办嘛!他不跟我通话!(;´д`)” 630 | - 场景: 暖色调办公室,背后美国国旗,桌上放着一堆汉堡,一个复古红色转盘电话,人物在画面左边,电话在右边。 631 | 632 | 第二格: 633 | - 表情: 咬牙切齿,暴怒,脸涨红 634 | - 动作: 猛拍桌子,汉堡震得跳起来 635 | - 文字泡: “哼!关税加倍!不理我是他们的损失!( `д´ )” - 场景: 和第一格相同,但一片狼藉。 636 | 637 | 其他说明: 638 | - 文字采用简洁可爱的手写体,整体风格可爱而有趣。 639 | - 构图饱满生动,请保留足够空间用于文字显示,适当留白。 640 | - 图片比例 2:3。 641 | - 画面整体色彩鲜艳,突出卡通风格。 642 | 643 | ``` 644 | **Reference Image Required:** A photo of a person is needed for reference. 645 | 646 | [⬆️ Back to Directory](#example-toc) 647 | 648 | 649 | ## Example 39: Cartoon Illustration (Computer Head) (by [@dotey](https://x.com/dotey)) 650 | 651 | [Source Link](https://x.com/dotey/status/1905103477879267823) 652 | 653 | Cartoon character with a computer monitor head jumping through a portal in a fantasy forest 654 | 655 | **Prompt:** 656 | ``` 657 | A cartoon-style character with a smiling computer monitor as its head, wearing gloves and boots, happily jumping through a glowing, blue, circular portal in a lush, fantasy forest landscape. The forest is detailed with large trees, mushrooms, flowers, a serene river, floating islands, and an atmospheric starry night sky with multiple moons. Bright, vibrant colors with soft lighting, fantasy illustration style. 658 | ``` 659 | 660 | [⬆️ Back to Directory](#example-toc) 661 | 662 | 663 | ## Example 38: Hand-drawn Infographic Card (IP) (by [@dotey](https://x.com/dotey)) 664 | 665 | [Source Link](https://x.com/dotey/status/1907870919852179850) 666 | 667 | Hand-drawn infographic card in Chinese stating that building an IP yields long-term compound interest 668 | 669 | **Prompt:** 670 | ``` 671 | 创作一张手绘风格的信息图卡片,比例为9:16竖版。卡片主题鲜明,背景为带有纸质肌理的米色或米白色,整体设计体现质朴、亲切的手绘美感。 672 | 673 | 卡片上方以红黑相间、对比鲜明的大号毛笔草书字体突出标题,吸引视觉焦点。文字内容均采用中文草书,整体布局分为2至4个清晰的小节,每节以简短、精炼的中文短语表达核心要点。字体保持草书流畅的韵律感,既清晰可读又富有艺术气息。周边适当留白。 674 | 675 | 卡片中点缀简单、有趣的手绘插画或图标,例如人物或象征符号,以增强视觉吸引力,引发读者思考与共鸣。整体布局注意视觉平衡,预留足够的空白空间,确保画面简洁明了,易于阅读和理解。 676 | “做 IP 是长期复利 677 | 坚持每日更新,肯定会有结果,因为 99% 都坚持不了的!” 678 | ``` 679 | 680 | [⬆️ Back to Directory](#example-toc) 681 | 682 | 683 | ## Example 37: Social Media Post Doodle Overlay (by [@op7418](https://x.com/op7418)) 684 | 685 | [Source Link](https://x.com/op7418/status/1906208691877253536) 686 | 687 | Screenshot of a social media post covered in frantic red ink doodles, annotations, and drawings 688 | 689 | **Prompt:** 690 | ``` 691 | 生成图片,把它打印出来,然后用红墨水疯狂地加上手写中文批注、涂鸦、乱画,如果你想的话,还可以加点小剪贴画 692 | ``` 693 | **Reference Image Required:** A photo or screenshot. 694 | 695 | [⬆️ Back to Directory](#example-toc) 696 | 697 | 698 | ## Example 36: Minimalist 3D Illustration (Text Prompt) (by [@dotey](https://x.com/dotey)) 699 | 700 | [Source Link](https://x.com/dotey/status/1907131027253772399) 701 | 702 | Minimalist 3D illustration of a toilet generated from a detailed text-based style description 703 | 704 | **Prompt:** 705 | ``` 706 | 画一个马桶: 707 | 708 | ## 艺术风格简介:极简主义3D插画(Minimalist 3D Illustration) 709 | 710 | ### 🎨 视觉元素(Visual Elements) 711 | 712 | #### 🟢 造型语言(Shape Language) 713 | - 圆润的边缘、平滑柔和的外形,采用简化几何造型。 714 | 715 | #### 🎨 色彩(Colors) 716 | - **主色调:** 柔和米色、浅灰色、暖橙色。 717 | - **强调色:** 暖橙色用于焦点元素。 718 | - **明暗处理:** 柔和渐变,平滑过渡,避免强烈的阴影和高光。 719 | 720 | #### 💡 光照(Lighting) 721 | - **类型:** 柔和、漫反射光照。 722 | - **光源方向:** 上方稍偏右。 723 | - **阴影风格:** 微妙且漫射,无锐利或高对比度的阴影。 724 | 725 | #### 🧱 材质(Materials) 726 | - **表面纹理:** 哑光、平滑的表面,带有微妙的明暗变化。 727 | - **反射性:** 低或无,避免明显的光泽。 728 | 729 | #### 🖼️ 构图(Composition) 730 | - **对象呈现:** 单一、居中的物体,周围留出大量负空间。 731 | - **视角:** 轻微倾斜视角,呈现适度的三维感,但无明显的景深效果。 732 | - **背景:** 纯色、低饱和度,与主体协调且不干扰视线。 733 | 734 | #### ✒️ 字体排版(Typography) 735 | - **字体风格:** 极简、无衬线字体。 736 | - **文字位置:** 左下角,尺寸小巧且不突出。 737 | - **字体颜色:** 灰色,与背景形成低对比度。 738 | 739 | #### 🖥️ 渲染风格(Rendering Style) 740 | - **技术手法:** 3D渲染,采用简化的低多边形风格。 741 | - **细节程度:** 中等细节,以形状和色彩为主,避免复杂纹理和细节。 742 | 743 | ### 🎯 风格目标(Purpose) 744 | > 创建干净、美观的视觉效果,强调简洁、亲和和现代感。 745 | 746 | ``` 747 | 748 | [⬆️ Back to Directory](#example-toc) 749 | 750 | 751 | ## Example 35: Fluffy Jack-o'-lantern (by [gizakdag](https://x.com/gizakdag)) 752 | 753 | [Source Link 1](https://x.com/gizakdag/status/1911075302941622512) 754 | [Source Link 2](https://x.com/dotey/status/1912276883196039520) 755 | 756 | Hyperrealistic 3D render of a jack-o'-lantern emoji covered in soft orange fur 757 | 758 | **Prompt:** 759 | ``` 760 | Transform a simple flat vector icon of [🎃] into a soft, 3D fluffy object. The shape is fully covered in fur, with hyperrealistic hair texture and soft shadows. The object is centered on a clean, light gray background and floats gently in space. The style is surreal, tactile, and modern, evoking a sense of comfort and playfulness. Studio lighting, high-resolution render. 761 | ``` 762 | 763 | [⬆️ Back to Directory](#example-toc) 764 | 765 | 766 | ## Example 34: Hand-drawn Infographic Card (Cognition) (by [@dotey](https://x.com/dotey)) 767 | 768 | [Source Link](https://x.com/dotey/status/1907903480678985784) 769 | 770 | Hand-drawn infographic card in Chinese discussing cognition and social circles determining limits and opportunities 771 | 772 | **Prompt:** 773 | ``` 774 | 创作一张手绘风格的信息图卡片,比例为9:16竖版。卡片主题鲜明,背景为带有纸质肌理的米色或米白色,整体设计体现质朴、亲切的手绘美感。 775 | 776 | 卡片上方以红黑相间、对比鲜明的大号毛笔草书字体突出标题,吸引视觉焦点。文字内容均采用中文草书,整体布局分为2至4个清晰的小节,每节以简短、精炼的中文短语表达核心要点。字体保持草书流畅的韵律感,既清晰可读又富有艺术气息。 777 | 778 | 卡片中点缀简单、有趣的手绘插画或图标,例如人物或象征符号,以增强视觉吸引力,引发读者思考与共鸣。 779 | 整体布局注意视觉平衡,预留足够的空白空间,确保画面简洁明了,易于阅读和理解。 780 | 781 |

「认知」决定上限 782 | 「圈子」决定机会

783 | - 你赚不到「认知」以外的钱, 784 | - 也遇不到「圈子」以外的机会。 785 | ``` 786 | 787 | [⬆️ Back to Directory](#example-toc) 788 | 789 | 790 | ## Example 33: Family Wedding Photo (Q-version) (by [@balconychy](https://x.com/balconychy)) 791 | 792 | [Source Link](https://x.com/balconychy/status/1909426314643222595) 793 | 794 | Q-version 3D family portrait with parents in wedding attire and child as flower bearer, framed 795 | 796 | **Prompt:** 797 | ``` 798 | 将照片里的转换成Q版 3D人物,父母婚礼服饰,孩子是美丽的花童。 父母,西式婚礼服饰,父亲礼服,母亲婚纱。孩子手捧鲜花。 背景是五彩鲜花做的拱门。 除了人物是3D Q版,环境其他都是写实。 整体放在一个相框里。 799 | ``` 800 | **Reference Image Required:** A family photo. 801 | 802 | [⬆️ Back to Directory](#example-toc) 803 | 804 | 805 | ## Example 32: Paper Cutout Style Job Ad (by [@dotey](https://x.com/dotey)) 806 | 807 | [Source Link](https://x.com/dotey/status/1905021792642564406) 808 | 809 | Job advertisement for drivers using a paper cutout art style 810 | 811 | **Prompt:** 812 | ``` 813 | The image shows professional drivers of cars and trucks at work, impressive urban and rural speeds, a positive team environment and modern visuals of the fleet - all this advertises a vacancy for drivers with competitive pay, flexible working hours and a clear call to institutions: "Apply today - we will start tomorrow!" 814 | ``` 815 | 816 | [⬆️ Back to Directory](#example-toc) 817 | 818 | 819 | ## Example 31: Anime Sticker Collection (by [@richardchang](https://x.com/richardchang)) 820 | 821 | [Source Link](https://x.com/richardchang/status/1909086122959139312) 822 | 823 | Collection of various Naruto character stickers 824 | 825 | **Prompt:** 826 | ``` 827 | Naruto stickers 828 | ``` 829 | 830 | [⬆️ Back to Directory](#example-toc) 831 | 832 | 833 | ## Example 30: 35mm Film Style Flying Island (by [@dotey](https://x.com/dotey)) 834 | 835 | [Source Link](https://x.com/dotey/status/1905020833451348283) 836 | 837 | 35mm film photo aesthetic showing Moscow cityscape on a flying island in the sky 838 | 839 | **Prompt:** 840 | ``` 841 | 35 mm photo of Moscow floating in the sky on a flying islands 842 | ``` 843 | 844 | [⬆️ Back to Directory](#example-toc) 845 | 846 | 847 | ## Example 29: Famous Painting Character OOTD (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 848 | 849 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1909892294217781714) 850 | 851 | Outfit of the Day (OOTD) concept for 'Girl with a Pearl Earring' as a fashion designer, Q-version 3D style 852 | 853 | **Prompt:** 854 | ``` 855 | 为图片人物生成不同职业风的OOTD,时尚穿搭和配饰,和人物色系一致的纯色背景,Q版 3d,c4d渲染,保持人脸特征,姿势都要保持一致,人物的比例腿很修长 856 | 857 | 构图:9:16 858 | 顶部文字:OOTD,左侧为人物ootd q版形象,右侧为穿搭的单件展示 859 | 860 | 先来第一个职业:时尚设计师 861 | ``` 862 | **Reference Image Required:** [Image of 'Girl with a Pearl Earring'](./references/Meisje_met_de_parel.jpg). 863 | 864 | [⬆️ Back to Directory](#example-toc) 865 | 866 | 867 | ## Example 28: Flat Sticker Design (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 868 | 869 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1908044836953108490) 870 | 871 | Minimalist flat illustration style Q-version sticker of 'Girl with a Pearl Earring' with a thick white border 872 | 873 | **Prompt:** 874 | ``` 875 | 把这张照片设计成一个极简扁平插画风格的Q版贴纸,厚白边,保留人物特征,风格要可爱一些,人物要超出圆形区域边框,圆形区域要为纯色不要3d感,透明背景 876 | ``` 877 | **Reference Image Required:** A clear profile photo. 878 | 879 | [⬆️ Back to Directory](#example-toc) 880 | 881 | 882 | ## Example 27: Q-version Emoji Sticker Pack Creation (by [@dotey](https://x.com/dotey)) 883 | 884 | [Source Link](https://x.com/dotey/status/1909800530739679488) 885 | 886 | Set of six chibi-style stickers based on a user's photo, showing various cute expressions and poses 887 | 888 | **Prompt:** 889 | ``` 890 | 创作一套全新的 chibi sticker,共六个独特姿势,以用户形象为主角: 891 | 1. 双手比出剪刀手,俏皮地眨眼; 892 | 2. 泪眼汪汪、嘴唇微微颤动,呈现可爱哭泣的表情; 893 | 3. 张开双臂,做出热情的大大拥抱姿势; 894 | 4. 侧卧入睡,靠着迷你枕头,带着甜甜的微笑; 895 | 5. 自信满满地向前方伸手指,周围点缀闪亮特效; 896 | 6. 手势飞吻,周围飘散出爱心表情。 897 | 保留 chibi 美学风格:夸张有神的大眼睛、柔和的面部线条、活泼俏皮的短款黑色发型、配以大胆领口设计的白色服饰,背景使用充满活力的红色,并搭配星星或彩色纸屑元素进行装饰。周边适当留白。 898 | Aspect ratio: 9:16 899 | ``` 900 | **Reference Image Required:** A clear profile photo. 901 | 902 | [⬆️ Back to Directory](#example-toc) 903 | 904 | 905 | ## Example 26: Famous Painting Character Cereal Ad (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 906 | 907 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1909542765857587310) 908 | 909 | Ad cover featuring 'Girl with a Pearl Earring' as a cute Q-version 3D character on a fictional 'Master Oats' cereal box 910 | 911 | **Prompt:** 912 | ``` 913 | 《大师麦片》:根据我上传的照片的人物特征判断,为他生成一个符合他特质的燕麦片搭配(比如蔬菜、水果、酸奶、粗粮等等)和包装设计,然后生成他作为麦片包装盒封面人物 加 相应麦片搭配的广告封面,人物要保持特征、可爱Q版3d、c4d渲染风格,麦片所放置的地方的风格也要符合设定,比如放在厨房、超市 极简主义的设计台上等等,先做好设定,再生成图像 914 | ``` 915 | **Reference Image Required:** [Image of 'Girl with a Pearl Earring'](./references/Meisje_met_de_parel.jpg). 916 | 917 | [⬆️ Back to Directory](#example-toc) 918 | 919 | 920 | ## Example 25: Minimalist 3D Illustration (by [@0xdlk](https://x.com/0xdlk)) 921 | 922 | [Source Link](https://x.com/0xdlk/status/1906843247432929642) 923 | 924 | Minimalist 3D illustration of a toilet following a specific JSON style profile 925 | 926 | **Prompt:** 927 | ``` 928 | Generate a toilet with the following JSON profile: 929 | { 930 | "art_style_profile": { 931 | "style_name": "Minimalist 3D Illustration", 932 | "visual_elements": { 933 | "shape_language": "Rounded edges, smooth and soft forms with simplified geometry", 934 | "colors": { 935 | "primary_palette": ["Soft beige, light gray, warm orange"], 936 | "accent_colors": ["Warm orange for focal elements"], 937 | "shading": "Soft gradients with smooth transitions, avoiding harsh shadows or highlights" 938 | }, 939 | "lighting": { 940 | "type": "Soft, diffused lighting", 941 | "source_direction": "Above and slightly to the right", 942 | "shadow_style": "Subtle and diffused, no sharp or high-contrast shadows" 943 | }, 944 | "materials": { 945 | "surface_texture": "Matte, smooth surfaces with subtle shading", 946 | "reflectivity": "Low to none, avoiding glossiness" 947 | }, 948 | "composition": { 949 | "object_presentation": "Single, central object displayed in isolation with ample negative space", 950 | "perspective": "Slightly angled, giving a three-dimensional feel without extreme depth", 951 | "background": "Solid, muted color that complements the object without distraction" 952 | }, 953 | "typography": { 954 | "font_style": "Minimalistic, sans-serif", 955 | "text_placement": "Bottom-left corner with small, subtle text", 956 | "color": "Gray, low-contrast against the background" 957 | }, 958 | "rendering_style": { 959 | "technique": "3D render with simplified, low-poly aesthetics", 960 | "detail_level": "Medium detail, focusing on form and color over texture or intricacy" 961 | } 962 | }, 963 | "purpose": "To create clean, aesthetically pleasing visuals that emphasize simplicity, approachability, and modernity." 964 | } 965 | } 966 | ``` 967 | 968 | [⬆️ Back to Directory](#example-toc) 969 | 970 | 971 | ## Example 24: Funko Pop Figure Creation (by [@dotey](https://x.com/dotey)) 972 | 973 | [Source Link](https://x.com/dotey/status/1909047283485671924) 974 | 975 | Isometric view of a custom Funko Pop box titled 'JAMES BOND' based on a photo, showing figure inside and beside the box 976 | 977 | **Prompt:** 978 | ``` 979 | 把照片中的人物变成 Funko Pop 公仔包装盒的风格,以等距视角(isometric)呈现,并在包装盒上标注标题为“JAMES BOND”。包装盒内展示的是照片中人物形象,旁边搭配有人物的必备物品(手枪、手表、西装、其他)同时,在包装盒旁边还应呈现该公仔本体的实物效果,采用逼真的、具有真实感的渲染风格。 980 | ``` 981 | **Reference Image Required:** A clear half-body or full-body photo. 982 | 983 | [⬆️ Back to Directory](#example-toc) 984 | 985 | 986 | ## Example 23: "Titanic" Pose Parody (by [@balconychy](https://x.com/balconychy)) 987 | 988 | [Source Link](https://x.com/balconychy/status/1909916265067557299) 989 | 990 | Cute Q-version 3D couple recreating the Titanic 'king of the world' pose on a ship's bow 991 | 992 | **Prompt:** 993 | ``` 994 | 将附图中的人物转换成可爱Q版3D造型 995 | 场景:在豪华游轮最顶尖的船头,船头是尖的。 996 | 男士带着女士站在泰坦尼克号船头,男士双手搂着女士的腰,女士双臂伸展穿着连衣裙,迎着风,脸上洋溢着自由与畅快。 997 | 此时天色呈现出黄昏的暖色调,大海在船下延展 。 998 | 除了人物用Q版3D造型以外,其他环境都是实物。 999 | ``` 1000 | **Reference Image Required:** A couple's photo. 1001 | 1002 | [⬆️ Back to Directory](#example-toc) 1003 | 1004 | 1005 | ## Example 22: Xiaohongshu Cover Image (by [@balconychy](https://x.com/balconychy)) 1006 | 1007 | [Source Link](https://x.com/balconychy/status/1905507936526627078) 1008 | 1009 | Promotional image styled like a Xiaohongshu cover about ChatGPT's new strengths 1010 | 1011 | **Prompt:** 1012 | ``` 1013 | 画图:画一个小红书封面。 1014 | 要求: 1015 | 有足够的吸引力吸引用户点击; 1016 | 字体醒目,选择有个性的字体; 1017 | 文字大小按重要度分级,体现文案的逻辑结构; 1018 | 标题是普通文字的至少2倍; 1019 | 文字段落之间留白。 1020 | 只对要强调的文字用醒目色吸引用户注意; 1021 | 背景使用吸引眼球的图案(包括不限于纸张,记事本,微信聊天窗口,选择一种) 1022 | 使用合适的图标或图片增加视觉层次,但要减少干扰。 1023 | 1024 | 文案:重磅!ChatGPT又变强了! 1025 | 多任务处理更牛✨ 1026 | 编程能力更强💪 1027 | 创造力爆表🎨 1028 | 快来试试! 1029 | 1030 | 图像9:16比例 1031 | ``` 1032 | 1033 | [⬆️ Back to Directory](#example-toc) 1034 | 1035 | 1036 | ## Example 21: Stick Figure Emoji Pack (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1037 | 1038 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1909907741948399873) 1039 | 1040 | Einstein transformed into a hand-drawn stick figure emoji pack with various expressions 1041 | 1042 | **Prompt:** 1043 | ``` 1044 | (分为两步) 1045 | 先把图片人物变成手绘简笔画风格 1046 | 然后把简笔画按照吐舌头、微笑、皱眉、惊讶、思考、眨眼生成一系列表情包 1047 | ``` 1048 | **Reference Image Required:** A photo of a person. 1049 | 1050 | [⬆️ Back to Directory](#example-toc) 1051 | 1052 | 1053 | ## Example 20: Four-Panel Manga (Theory of Relativity) (by [@dotey](https://x.com/dotey)) 1054 | 1055 | [Source Link](https://x.com/dotey/status/1904980568107819060) 1056 | 1057 | Colorful four-panel manga humorously explaining the theory of relativity 1058 | 1059 | **Prompt:** 1060 | ``` 1061 | make a colorful page of manga describing the theory of relativity. add some humor 1062 | ``` 1063 | 1064 | [⬆️ Back to Directory](#example-toc) 1065 | 1066 | 1067 | ## Example 19: Textbook Illustration Redraw (by [@balconychy](https://x.com/balconychy)) 1068 | 1069 | [Source Link](https://x.com/balconychy/status/1906982626365178361) 1070 | 1071 | Chinese language textbook illustration redrawn in a modern style 1072 | 1073 | **Prompt:** 1074 | ``` 1075 | 重绘语文课本插画 1076 | ``` 1077 | **Reference Image Required:** An original textbook illustration. 1078 | 1079 | [⬆️ Back to Directory](#example-toc) 1080 | 1081 | 1082 | ## Example 18: Pixar 3D Style (by [AnimeAI](https://animeai.online)) 1083 | 1084 | [Source Link](https://animeai.online/#demo-gallery) 1085 | 1086 | Scene from The Godfather redrawn in Pixar 3D style 1087 | 1088 | **Prompt:** 1089 | ``` 1090 | 以皮克斯 3D 风格重绘这张照片 1091 | ``` 1092 | **Reference Image Required:** A photo of a person or other subject. 1093 | 1094 | [⬆️ Back to Directory](#example-toc) 1095 | 1096 | 1097 | ## Example 17: Digimon Style Image (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1098 | 1099 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1911001291280859559) 1100 | 1101 | User's photo transformed into Digimon style with a matching Digimon partner 1102 | 1103 | **Prompt:** 1104 | ``` 1105 | 为我生成一张数码宝贝风格的图片,并为我匹配一只数码宝贝 1106 | ``` 1107 | **Reference Image Required:** A single person photo. 1108 | 1109 | [⬆️ Back to Directory](#example-toc) 1110 | 1111 | 1112 | ## Example 16: Pudding Slot Machine (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1113 | 1114 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1911107569898471818) 1115 | 1116 | Slot machine emoji transformed into a delicious-looking pudding 1117 | 1118 | **Prompt:** 1119 | ``` 1120 | 将图标[🎰]变成美味可口布丁造型,Q弹质感,背景粉白渐变,整体甜美、轻盈、可爱 1121 | ``` 1122 | 1123 | [⬆️ Back to Directory](#example-toc) 1124 | 1125 | 1126 | ## Example 15: Satirical Poster Generation (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1127 | 1128 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1905287637084274742) 1129 | 1130 | Satirical poster suggesting AI image creators should become delivery drivers due to GPT-4o competition 1131 | 1132 | **Prompt:** 1133 | ``` 1134 | 为我生成讽刺海报:GPT 4o 狂卷,都别干图像AI了 还是送外卖吧 1135 | ``` 1136 | 1137 | [⬆️ Back to Directory](#example-toc) 1138 | 1139 | 1140 | ## Example 14: "One Piece" Themed Figure Creation (by [@dotey](https://x.com/dotey)) 1141 | 1142 | [Source Link](https://x.com/dotey/status/1909047547563213145) 1143 | 1144 | Isometric view of a One Piece themed figure box based on a photo, showing the figure inside and beside the box 1145 | 1146 | **Prompt:** 1147 | ``` 1148 | 把照片中的人物变成《海贼王》(One Piece)动漫主题手办包装盒的风格,以等距视角(isometric)呈现。包装盒内展示的是基于照片人物的《海贼王》动漫画风设计的形象,旁边搭配有日常必备物品(手枪、手表、西装和皮鞋)同时,在包装盒旁边还应呈现该手办本体的实物效果,采用逼真的、具有真实感的渲染风格。 1149 | ``` 1150 | *Note: The list of essential items was slightly modified here. Please refer to the original source.* 1151 | 1152 | **Reference Image Required:** A half-body or full-body photo. 1153 | 1154 | [⬆️ Back to Directory](#example-toc) 1155 | 1156 | 1157 | ## Example 13: Photo to 3D Q-version Style (by [@dotey](https://x.com/dotey)) 1158 | 1159 | [Source Link](https://x.com/dotey/status/1908194518345678865) 1160 | 1161 | Comparison showing original photo converted to 3D Q-version style while keeping scene and outfit 1162 | 1163 | **Prompt:** 1164 | ``` 1165 | 将场景中的角色转化为3D Q版风格,同时保持原本的场景布置和服装造型不变。 1166 | ``` 1167 | **Reference Image Required:** A photo. 1168 | 1169 | [⬆️ Back to Directory](#example-toc) 1170 | 1171 | 1172 | ## Example 12: 3D Couple Jewelry Box Figurine (by [@dotey](https://x.com/dotey)) 1173 | 1174 | [Source Link](https://x.com/dotey/status/1909332895115714835) 1175 | 1176 | 3D rendered Q-version couple figurine inside a decorated jewelry box display 1177 | 1178 | **Prompt:** 1179 | ``` 1180 | 根据照片上的内容打造一款细致精美、萌趣可爱的3D渲染收藏摆件,装置在柔和粉彩色调、温馨浪漫的展示盒中。展示盒为浅奶油色搭配柔和的金色装饰,形似精致的便携珠宝盒。打开盒盖,呈现出一幕温暖浪漫的场景:两位Q版角色正甜蜜相望。盒顶雕刻着“FOREVER TOGETHER”(永远在一起)的字样,周围点缀着小巧精致的星星与爱心图案。 1181 | 盒内站着照片上的女性,手中捧着一束小巧的白色花束。她的身旁是她的伴侣,照片上的男性。两人都拥有大而闪亮、充满表现力的眼睛,以及柔和、温暖的微笑,传递出浓浓的爱意和迷人的气质。 1182 | 他们身后有一扇圆形窗户,透过窗户能看到阳光明媚的中国古典小镇天际线和轻柔飘浮的云朵。盒内以温暖的柔和光线进行照明,背景中漂浮着花瓣点缀气氛。整个展示盒和角色的色调优雅和谐,营造出一个奢华而梦幻的迷你纪念品场景。 1183 | 尺寸:9:16 1184 | ``` 1185 | **Reference Image Required:** A couple's photo. 1186 | 1187 | [⬆️ Back to Directory](#example-toc) 1188 | 1189 | 1190 | ## Example 11: PS2 Game Cover (GTA x Shrek) (by [@dotey](https://x.com/dotey)) 1191 | 1192 | [Source Link](https://x.com/dotey/status/1904978767090524372) 1193 | 1194 | Fake PS2 game cover for 'Grand Theft Auto: Far Far Away' featuring Shrek characters 1195 | 1196 | **Prompt:** 1197 | ``` 1198 | Can you create a PS2 video game case of "Grand Theft Auto: Far Far Away" a GTA based in the Shrek Universe. 1199 | ``` 1200 | 1201 | [⬆️ Back to Directory](#example-toc) 1202 | 1203 | 1204 | ## Example 10: Satirical Cartoon Generation (by [@dotey](https://x.com/dotey)) 1205 | 1206 | [Source Link](https://x.com/dotey/status/1910514811756065159) 1207 | 1208 | Satirical retro cartoon of MAGA hats labeled 'Made in China' with marked-up price 1209 | 1210 | **Prompt:** 1211 | ``` 1212 | 一幅讽刺漫画风格的插画,采用复古美式漫画风格,背景是一个多层货架,货架上都是一样的红色棒球帽,帽子正面印有大字标语“MAKE AMERICA GREAT AGAIN”,帽侧贴着白色标签写着“MADE IN CHINA”,特写视角聚焦其中一顶红色棒球帽。画面下方有价格牌,原价“$50.00”被粗黑线X划掉,改为“$77.00”,色调为怀旧的土黄与暗红色调,阴影处理带有90年代复古印刷质感。整体构图风格夸张讽刺,具讽刺政治消费主义的意味。 1213 | ``` 1214 | 1215 | [⬆️ Back to Directory](#example-toc) 1216 | 1217 | 1218 | ## Example 9: Famous Painting as Helium Balloon (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1219 | 1220 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1910976632141267237) 1221 | 1222 | Girl with a Pearl Earring transformed into a doll-shaped helium balloon 1223 | 1224 | **Prompt:** 1225 | ``` 1226 | 将图片中的人物变成玩偶形状的氦气球 1227 | ``` 1228 | **Reference Image Required:** A half-body or full-body single person photo. 1229 | 1230 | [⬆️ Back to Directory](#example-toc) 1231 | 1232 | 1233 | ## Example 8: Lego Collectible Figure (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1234 | 1235 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1910644499354968091) 1236 | 1237 | Lego figure resembling the user with a matching animal companion in a display case 1238 | 1239 | **Prompt:** 1240 | ``` 1241 | 根据我上传的照片,生成一张纵向比例的照片,使用以下提示词: 1242 | 1243 | 经典乐高人偶风格,一个微缩场景 —— 一只动物站在我身旁。这只动物的配色与我相匹配。 1244 | 1245 | 请根据你对我的理解来创造这只动物(你可以选择任何你认为适合我的动物,不论是真实存在的,还是超现实的、幻想的,只要你觉得符合我的气质即可)。 1246 | 1247 | 整个场景设定在一个透明玻璃立方体内,布景极简。 1248 | 1249 | 微缩场景的底座是哑光黑色,配以银色装饰,风格简约且时尚。 1250 | 1251 | 底座上有一块优雅雕刻的标签牌,字体为精致的衬线体,上面写着该动物的名称。 1252 | 1253 | 底部设计中还巧妙融入了类似自然历史博物馆展示的生物学分类信息,以精细蚀刻的方式呈现。 1254 | 1255 | 整体构图像是一件高端收藏艺术品:精心打造、策展般呈现、灯光细致。 1256 | 1257 | 构图重在平衡。背景为渐变色,从深色到浅色过渡(颜色基于主色调进行选择)。 1258 | ``` 1259 | **Reference Image Required:** A half-body or full-body single person photo. 1260 | 1261 | [⬆️ Back to Directory](#example-toc) 1262 | 1263 | 1264 | ## Example 7: Personalized Room Design (by [@ZHO_ZHO_ZHO](https://x.com/ZHO_ZHO_ZHO)) 1265 | 1266 | [Source Link](https://x.com/ZHO_ZHO_ZHO/status/1910698005193515370) 1267 | 1268 | Isometric view of a cute 3D personalized room design with city night view 1269 | 1270 | **Prompt:** 1271 | ``` 1272 | 为我生成我的房间设计(床、书架、沙发、电脑桌和电脑、墙上挂着绘画、绿植,窗外是城市夜景。可爱 3d 风格,c4d 渲染,轴测图。 1273 | ``` 1274 | *Note: The original prompt generated the room based on ChatGPT's memory of the user. This version is slightly modified. Please refer to the original source.* 1275 | 1276 | [⬆️ Back to Directory](#example-toc) 1277 | 1278 | 1279 | ## Example 6: Character Stepping Through Portal (by [@dotey](https://x.com/dotey)) 1280 | 1281 | [Source Link](https://x.com/dotey/status/1908910838636765204) 1282 | 1283 | 3D Q-version character pulling viewer's hand through a portal from a programmer's room into a blue world 1284 | 1285 | **Prompt:** 1286 | ``` 1287 | 照片中的角色的 3D Q 版形象穿过传送门,牵着观众的手,在将观众拉向前时动态地回头一看。传送门外的背景是观众的现实世界,一个典型的程序员的书房,有书桌,显示器和笔记本电脑,传送门内是角色所处的3D Q 版世界,细节可以参考照片,整体呈蓝色调,和现实世界形成鲜明对比。传送门散发着神秘的蓝色和紫色色调,是两个世界之间的完美椭圆形框架处在画面中间。从第三人称视角拍摄的摄像机角度,显示观看者的手被拉入角色世界。3:2 的宽高比。 1288 | (需要上传一张半身或者全身清晰照片作为输入) 1289 | ``` 1290 | **Reference Image Required:** A clear half-body or full-body single person photo. 1291 | 1292 | [⬆️ Back to Directory](#example-toc) 1293 | 1294 | 1295 | ## Example 5: Ghibli Style (by [AnimeAI](https://animeai.online)) 1296 | 1297 | [Source Link](https://animeai.online/#demo-gallery) 1298 | 1299 | Mona Lisa redrawn in Ghibli style 1300 | 1301 | **Prompt:** 1302 | ``` 1303 | 以吉卜力风格重绘这张照片 1304 | ``` 1305 | **Reference Image Required:** A photo of a person or other subject. 1306 | 1307 | *If encountering content policy violations, add this sentence to the prompt: If there is inappropriate (sensitive) content in the background, it can be modified or deleted.* 1308 | 1309 | [⬆️ Back to Directory](#example-toc) 1310 | 1311 | 1312 | ## Example 4: Q-version Chinese Wedding Scene (by [@balconychy](https://x.com/balconychy)) 1313 | 1314 | [Source Link](https://x.com/balconychy/status/1909418699150237917) 1315 | 1316 | Q-version 3D couple in traditional Chinese wedding attire with '囍' backdrop 1317 | 1318 | **Prompt:** 1319 | ``` 1320 | 将照片里的两个人转换成Q版 3D人物,中式古装婚礼,大红颜色,背景“囍”字剪纸风格图案。 服饰要求:写实,男士身着长袍马褂,主体为红色,上面以金色绣龙纹图案,彰显尊贵大气 ,胸前系着大红花,寓意喜庆吉祥。女士所穿是秀禾服,同样以红色为基调,饰有精美的金色花纹与凤凰刺绣,展现出典雅华丽之感 ,头上搭配花朵发饰,增添柔美温婉气质。二者皆为中式婚礼中经典着装,蕴含着对新人婚姻美满的祝福。 头饰要求: 男士:中式状元帽,主体红色,饰有金色纹样,帽顶有精致金饰,尽显传统儒雅庄重。 女士:凤冠造型,以红色花朵为中心,搭配金色立体装饰与垂坠流苏,华丽富贵,古典韵味十足。 1321 | ``` 1322 | **Reference Image Required:** A couple's photo. 1323 | 1324 | [⬆️ Back to Directory](#example-toc) 1325 | 1326 | 1327 | ## Example 3: Vintage Promotional Poster (by [@dotey](https://x.com/dotey)) 1328 | 1329 | [Source Link](https://x.com/dotey/status/1905251524248248650) 1330 | 1331 | Vintage style promotional poster with Chinese text advertising AI painting service 1332 | 1333 | **Prompt:** 1334 | ``` 1335 | 复古宣传海报风格,突出中文文字,背景为红黄放射状图案。画面中心位置有一位美丽的年轻女性,以精致复古风格绘制,面带微笑,气质优雅,具有亲和力。主题是GPT最新AI绘画服务的广告促销,强调‘惊爆价9.9/张’、‘适用各种场景、图像融合、局部重绘’、‘每张提交3次修改’、‘AI直出效果,无需修改’,底部醒目标注‘有意向点右下“我想要”’,右下角绘制一个手指点击按钮动作,左下角展示OpenAI标志。 1336 | ``` 1337 | 1338 | [⬆️ Back to Directory](#example-toc) 1339 | 1340 | 1341 | ## Example 2: 3D Polaroid Breakout Effect (by [@dotey](https://x.com/dotey)) 1342 | 1343 | [Source Link](https://x.com/dotey/status/1908238003169903060) 1344 | 1345 | 3D Q-version character stepping out of a polaroid photo held by a hand 1346 | 1347 | **Prompt:** 1348 | ``` 1349 | 将场景中的角色转化为3D Q版风格,放在一张拍立得照片上,相纸被一只手拿着,照片中的角色正从拍立得照片中走出,呈现出突破二维相片边框、进入二维现实空间的视觉效果。 1350 | ``` 1351 | **Reference Image Required:** A half-body or full-body single person photo. 1352 | 1353 | [⬆️ Back to Directory](#example-toc) 1354 | 1355 | 1356 | ## Example 1: Q-version Proposal Scene (by [@balconychy](https://x.com/balconychy)) 1357 | 1358 | [Source Link](https://x.com/balconychy/status/1909417750587486469) 1359 | 1360 | Q-version 3D couple in a realistic proposal setting with flower arch 1361 | 1362 | **Prompt:** 1363 | ``` 1364 | 将照片里的两个人转换成Q版 3D人物,场景换成求婚,背景换成淡雅五彩花瓣做的拱门,背景换成浪漫颜色,地上散落着玫瑰花瓣。除了人物采用Q版 3D人物风格,其他环境采用真实写实风格。 1365 | ``` 1366 | **Reference Image Required:** A couple's photo. 1367 | 1368 | [⬆️ Back to Directory](#example-toc) 1369 | 1370 | --- 1371 | 1372 | 1373 | ## 🛠️ Tools 1374 | 1375 | Here are applications where you can use the GPT-4o model to generate images: 1376 | 1377 | - **💬 [ChatGPT](https://chatgpt.com):** Official OpenAI product. Use GPT-4o to generate high-quality images with support for multiple styles and detailed control, suitable for creative expression and content creation. 1378 | 1379 | - **🎬 [Sora](https://sora.com):** Official OpenAI product. Generate realistic images via GPT-4o, supporting text-image combination and scene reconstruction, suitable for visual creative scenarios like film and animation. *(Note: Sora access is currently limited)* 1380 | 1381 | 1382 | 1383 | ## 💡 Prompting Tips 1384 | 1385 | 1. [Prompt Engineering (PDF)](https://s.baoyu.io/files/2025-01-18-pdf-1-TechAI-Goolge-whitepaper_Prompt%20Engineering_v4-af36dcc7a49bb7269a58b1c9b89a8ae1.pdf) by Google 1386 | 2. [Introducing 4o Image Generation](https://openai.com/index/introducing-4o-image-generation) by OpenAI 1387 | 1388 | 1389 | 1390 | ## 🤝 How to Contribute 1391 | 1392 | There are two ways to contribute, please read [CONTRIBUTING.md](./CONTRIBUTING.md). 1393 | 1394 | 1395 | 1396 | ## 🙏 Acknowledgements 1397 | 1398 | The content of this collection heavily relies on the creative prompts and wonderful visuals shared by the AI community on Twitter/X. We express our sincere gratitude to all contributors of these examples. 😊 1399 | 1400 | Special thanks to the following users for sharing their inspiring work ✨: 1401 | 1402 | * [-Zho- (@ZHO_ZHO_ZHO)](https://x.com/ZHO_ZHO_ZHO) 1403 | * [Gizem Akdag (@gizakdag)](https://x.com/gizakdag) 1404 | * [宝玉 (@dotey)](https://x.com/dotey) 1405 | * [balconychy(贝壳里奇) (@balconychy)](https://x.com/balconychy) 1406 | * [Daniel (@0xdlk)](https://x.com/0xdlk) 1407 | * [RichChat (@richardchang)](https://x.com/richardchang) 1408 | * [歸藏(guizang.ai) (@op7418)](https://x.com/op7418) 1409 | * [katon (@hellokaton)](https://x.com/hellokaton) 1410 | * [Berryxia.AI (@berryxia_ai)](https://x.com/berryxia_ai) 1411 | * [Ege (@egeberkina)](https://x.com/egeberkina) 1412 | * [Brett (@BrettFromDJ)](https://x.com/BrettFromDJ) 1413 | * [89'S (@M_w14_)](https://x.com/M_w14_) 1414 | * [jiamimao 猫叔 (@jiamimaodashu)](https://x.com/jiamimaodashu) 1415 | * [Amira Zairi (@azed_ai)](https://x.com/azed_ai) 1416 | * [Umesh (@umesh_ai)](https://x.com/umesh_ai) 1417 | * [Michael Rabone (@michaelrabone)](https://x.com/michaelrabone) 1418 | * [gnrly.xyz (@gnrlyxyz)](https://x.com/gnrlyxyz) 1419 | * [f-is-h (@f-is-h)](https://github.com/f-is-h) 1420 | * [Madpencil (@madpencil_)](https://x.com/madpencil_) 1421 | * [Hewar (@hewarsaber)](https://x.com/hewarsaber) 1422 | * And other creators whose prompts may have been included through retweets or indirect shares. 1423 | 1424 | If your work is included here and you wish to change the attribution or have it removed, please feel free to contact us. ✉️ 1425 | 1426 | [⬆️ Back to Top](#readme-top) 1427 | 1428 | 1429 | ## 🌟 Star History 1430 | 1431 | [![Star History Chart](https://api.star-history.com/svg?repos=jamez-bondos/awesome-gpt4o-images&type=Date)](https://www.star-history.com/#jamez-bondos/awesome-gpt4o-images&Date) 1432 | 1433 | [⬆️ Back to Top](#readme-top) 1434 | -------------------------------------------------------------------------------- /examples/example_35mm_moscow_flying_island.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_35mm_moscow_flying_island.jpeg -------------------------------------------------------------------------------- /examples/example_3d_collectible_couple_box.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_3d_collectible_couple_box.jpeg -------------------------------------------------------------------------------- /examples/example_3d_q_snowglobe_couple.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_3d_q_snowglobe_couple.jpeg -------------------------------------------------------------------------------- /examples/example_8bit_pixel_burger.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_8bit_pixel_burger.jpeg -------------------------------------------------------------------------------- /examples/example_Ultra_realistic_3D_game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_Ultra_realistic_3D_game.jpg -------------------------------------------------------------------------------- /examples/example_almanac_calendar_illustration.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_almanac_calendar_illustration.jpeg -------------------------------------------------------------------------------- /examples/example_art_figures_go.jpeg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_art_figures_go.jpeg.jpeg -------------------------------------------------------------------------------- /examples/example_chibi_emoji_pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_chibi_emoji_pack.png -------------------------------------------------------------------------------- /examples/example_chinese_wedding_invitation.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_chinese_wedding_invitation.jpeg -------------------------------------------------------------------------------- /examples/example_cloud_art_dragon_great_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_cloud_art_dragon_great_wall.png -------------------------------------------------------------------------------- /examples/example_digimon_style.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_digimon_style.jpeg -------------------------------------------------------------------------------- /examples/example_einstein_stickfigure_emoji.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_einstein_stickfigure_emoji.jpeg -------------------------------------------------------------------------------- /examples/example_emoji_cushion_pleading.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_emoji_cushion_pleading.jpeg -------------------------------------------------------------------------------- /examples/example_enamel_pins_pop_culture.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_enamel_pins_pop_culture.jpeg -------------------------------------------------------------------------------- /examples/example_esc_keycap_diorama.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_esc_keycap_diorama.jpeg -------------------------------------------------------------------------------- /examples/example_fake_tweet_einstein.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_fake_tweet_einstein.jpeg -------------------------------------------------------------------------------- /examples/example_family_wedding_photo_q.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_family_wedding_photo_q.jpeg -------------------------------------------------------------------------------- /examples/example_fantasy_computer_head_portal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_fantasy_computer_head_portal.jpeg -------------------------------------------------------------------------------- /examples/example_fashion_design_cover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_fashion_design_cover.jpeg -------------------------------------------------------------------------------- /examples/example_flat_sticker_pearl_earring.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_flat_sticker_pearl_earring.jpeg -------------------------------------------------------------------------------- /examples/example_fluffy_pumpkin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_fluffy_pumpkin.jpeg -------------------------------------------------------------------------------- /examples/example_food_stickers.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_food_stickers.jpeg -------------------------------------------------------------------------------- /examples/example_gpt_involution_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_gpt_involution_poster.png -------------------------------------------------------------------------------- /examples/example_hand_drawn_infographic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_hand_drawn_infographic.jpeg -------------------------------------------------------------------------------- /examples/example_hand_drawn_infographic_cognition.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_hand_drawn_infographic_cognition.jpeg -------------------------------------------------------------------------------- /examples/example_happy_capsule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_happy_capsule.png -------------------------------------------------------------------------------- /examples/example_harry_potter_sorting_hat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_harry_potter_sorting_hat.jpeg -------------------------------------------------------------------------------- /examples/example_ice_cream_emoji_strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_ice_cream_emoji_strawberry.png -------------------------------------------------------------------------------- /examples/example_lara_croft_card_break.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_lara_croft_card_break.jpeg -------------------------------------------------------------------------------- /examples/example_lego_collectible.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_lego_collectible.jpeg -------------------------------------------------------------------------------- /examples/example_low_poly_lizard.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_low_poly_lizard.jpeg -------------------------------------------------------------------------------- /examples/example_maga_hat_cartoon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_maga_hat_cartoon.jpeg -------------------------------------------------------------------------------- /examples/example_master_oats_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_master_oats_ad.png -------------------------------------------------------------------------------- /examples/example_matryoshka_pearl_earring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_matryoshka_pearl_earring.png -------------------------------------------------------------------------------- /examples/example_miniature_journey_west.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_miniature_journey_west.jpeg -------------------------------------------------------------------------------- /examples/example_miniature_starbucks_cup_building.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_miniature_starbucks_cup_building.jpeg -------------------------------------------------------------------------------- /examples/example_minimalist_3d_toilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_minimalist_3d_toilet.png -------------------------------------------------------------------------------- /examples/example_minimalist_3d_toilet_txt.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_minimalist_3d_toilet_txt.jpeg -------------------------------------------------------------------------------- /examples/example_naruto_stickers.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_naruto_stickers.jpeg -------------------------------------------------------------------------------- /examples/example_notebook_promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_notebook_promo.png -------------------------------------------------------------------------------- /examples/example_one_piece_figure_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_one_piece_figure_creation.png -------------------------------------------------------------------------------- /examples/example_ordinary_selfie_eason_nicholas.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_ordinary_selfie_eason_nicholas.jpeg -------------------------------------------------------------------------------- /examples/example_paper_craft_emoji_fire.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_paper_craft_emoji_fire.jpeg -------------------------------------------------------------------------------- /examples/example_paper_cutout_job_ad.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_paper_cutout_job_ad.jpeg -------------------------------------------------------------------------------- /examples/example_passport_stamp_beijing.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_passport_stamp_beijing.jpeg -------------------------------------------------------------------------------- /examples/example_passport_stamp_rome.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_passport_stamp_rome.jpeg -------------------------------------------------------------------------------- /examples/example_pearl_earring_balloon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_pearl_earring_balloon.jpeg -------------------------------------------------------------------------------- /examples/example_pearl_earring_ootd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_pearl_earring_ootd.png -------------------------------------------------------------------------------- /examples/example_personalized_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_personalized_room.png -------------------------------------------------------------------------------- /examples/example_photo_to_3d_q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_photo_to_3d_q.png -------------------------------------------------------------------------------- /examples/example_polaroid_breakout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_polaroid_breakout.png -------------------------------------------------------------------------------- /examples/example_portal_crossing_handhold.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_portal_crossing_handhold.jpeg -------------------------------------------------------------------------------- /examples/example_proposal_scene_q_realistic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_proposal_scene_q_realistic.jpeg -------------------------------------------------------------------------------- /examples/example_ps2_gta_shrek.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_ps2_gta_shrek.jpeg -------------------------------------------------------------------------------- /examples/example_pudding_slot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_pudding_slot.jpeg -------------------------------------------------------------------------------- /examples/example_q_chinese_wedding.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_q_chinese_wedding.jpeg -------------------------------------------------------------------------------- /examples/example_relativity_manga.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_relativity_manga.jpeg -------------------------------------------------------------------------------- /examples/example_rpg_card_designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_rpg_card_designer.png -------------------------------------------------------------------------------- /examples/example_silk_creation_universe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_silk_creation_universe.jpg -------------------------------------------------------------------------------- /examples/example_social_media_doodle.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_social_media_doodle.jpeg -------------------------------------------------------------------------------- /examples/example_steampunk_fish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_steampunk_fish.jpg -------------------------------------------------------------------------------- /examples/example_textbook_redraw.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_textbook_redraw.jpeg -------------------------------------------------------------------------------- /examples/example_titanic_q_realistic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_titanic_q_realistic.jpeg -------------------------------------------------------------------------------- /examples/example_trading_card_logo_tesla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_trading_card_logo_tesla.png -------------------------------------------------------------------------------- /examples/example_tromple-I-3d-art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_tromple-I-3d-art.jpg -------------------------------------------------------------------------------- /examples/example_tufted_rug_dino_emoji.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_tufted_rug_dino_emoji.jpeg -------------------------------------------------------------------------------- /examples/example_two_panel_manga_president.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_two_panel_manga_president.jpeg -------------------------------------------------------------------------------- /examples/example_university_mascot_npu.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_university_mascot_npu.jpeg -------------------------------------------------------------------------------- /examples/example_vector_poster_london.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_vector_poster_london.png -------------------------------------------------------------------------------- /examples/example_vintage_poster.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_vintage_poster.jpeg -------------------------------------------------------------------------------- /examples/example_voxel_icons.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/example_voxel_icons.jpeg -------------------------------------------------------------------------------- /examples/funko-pop-james-bond-figure-and-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/examples/funko-pop-james-bond-figure-and-box.png -------------------------------------------------------------------------------- /references/Meisje_met_de_parel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamez-bondos/awesome-gpt4o-images/d0e735188836f0ddaea95b3397fa1374ec9aeddc/references/Meisje_met_de_parel.jpg -------------------------------------------------------------------------------- /template.md: -------------------------------------------------------------------------------- 1 | # 中文案例 2 | 3 | ## 案例 41:微型立体场景 (孙悟空三打白骨精) (by [@dotey](https://x.com/dotey)) 4 | 5 | [原文链接](https://x.com/dotey/status/1911609122547449886) 6 | 7 | Q版孙悟空三打白骨精微型立体场景,移轴摄影风格 8 | 9 | **提示词:** 10 | ``` 11 | 微型立体场景呈现,运用移轴摄影的技法,呈现出Q版【孙悟空三打白骨精】场景 12 | ``` 13 | 14 | *注意:提示词中括号内的【孙悟空三打白骨精】可以替换为其他中文场景,如“孙悟空大闹天宫”、“哪吒闹海”、“武松打虎”、“黛玉葬花”、“孙悟空三打白骨精”、“关云长过五关斩六将”等。* 15 | 16 | **需上传参考图片:** N/A 17 | 18 | 19 | --- 20 | 21 | # English Example 22 | 23 | ## Example 52: Paper Craft Style Emoji Icon (by [@egeberkina](https://x.com/egeberkina)) 24 | 25 | [Source Link](https://x.com/egeberkina/status/1912521263085482464) 26 | 27 | Paper craft style fire emoji icon 28 | 29 | **Prompt:** 30 | ``` 31 | A paper craft-style "🔥" floating on a pure white background. The emoji is handcrafted from colorful cut paper with visible textures, creases, and layered shapes. It casts a soft drop shadow beneath, giving a sense of lightness and depth. The design is minimal, playful, and clean — centered in the frame with lots of negative space. Use soft studio lighting to highlight the paper texture and edges. 32 | ``` 33 | 34 | *Note: The "🔥" emoji in the prompt can be replaced with other emojis.* 35 | 36 | **Reference Image Required: ** N/A 37 | --------------------------------------------------------------------------------