模型 PROMPTS

nano-banana-2 Prompts — 1027 个精选示例

通过 RunAPI 使用 nano-banana-2 的示例。复制 prompt 后,可在 Claude Code、Codex、Cursor、Windsurf 或后端 API 中使用。

模型

nano-banana-2

模态
图像
提供方
Google
Endpoint
Text To Image
查看模型详情和定价 →
1. claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
2. 重启 Claude Code
3. 粘贴这个 prompt:生成一张图像:"Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
1. codex plugin install runapi-mcp@agents
2. 重启 Codex
3. 粘贴这个 prompt:生成一张图像:"Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
1. npx @runapi.ai/mcp init cursor
2. 重启 Cursor
3. 粘贴这个 prompt:生成一张图像:"Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
1. npx @runapi.ai/mcp init windsurf
2. 重启 Windsurf
3. 粘贴这个 prompt:生成一张图像:"Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
}
JSON
import { NanoBananaClient } from "@runapi.ai/nano-banana";

const client = new NanoBananaClient({
  apiKey: process.env.RUNAPI_API_KEY,
});

const result = await client.textToImage.run({
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
});
console.log(result.id);
require "runapi/nano_banana"

client = RunApi::NanoBanana::Client.new
result = client.text_to_image.run(
  model: "nano-banana-2",
  prompt: "Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”"
)
puts result.id
package main

import (
  "context"
  "fmt"
  "log"
  "net/http"
  "os"
  "strings"
)

func main() {
  body := strings.NewReader("{\"model\":\"nano-banana-2\",\"prompt\":\"Ultra-realistic 8K full body portrait of [PERSON’S FULL NAME], wearing a clean and pressed white social shirt with folded collar and a small lapel microphone, dark navy-blue dress pants and polished brown social shoes. Casually and unpretentiously leaning against a smooth light gray studio wall; hands are in pockets and one leg is crossed over the other, with relaxed and confident body language. Add to the wall next to them a prominent vector portrait in black and white of their face and bust - with sharp lines and angles, overlapping polygonal shapes and a minimalist modern graphic style, right below the information: “[PERSON’S FULL NAME]”, and below the name: “[PROFESSION]”\"}")
  req, err := http.NewRequestWithContext(context.Background(), http.MethodPost, "https://runapi.ai/api/v1/nano_banana/text_to_image", body)
  if err != nil {
    log.Fatal(err)
  }

  req.Header.Set("Authorization", "Bearer "+os.Getenv("RUNAPI_API_KEY"))
  req.Header.Set("Content-Type", "application/json")

  resp, err := http.DefaultClient.Do(req)
  if err != nil {
    log.Fatal(err)
  }
  defer resp.Body.Close()

  fmt.Println(resp.Status)
}
nano-banana-2 /api/v1/nano_banana/text_to_image 获取 API Key
IM
图像
Poster Design nano-banana-2

Masterpiece, best quality, high resolution, 8k, (Photorealis...

Masterpiece, best quality, high resolution, 8k, (Photorealistic:1.4), (Vibrant natural colors:1.2), (Full body shot:1.6), minimalist fashion scrapbook page. Subject: A full body fashion photo of [Character Description] standing in a [Pose]. The subject is wearing [Detailed Outfit]. The subject is a sharp, high-detail photographic cutout with sticker borders. The sticker has a die-cut white paper edge with visible paper-fiber texture on the cut-line. This white border has a subtle 3D thickness (beveled edge) that catches the light, creating a realistic micro-shadow. Composition: Professional top-down flat-lay view. A thin stack of 3-4 clean-cut premium white paper sheets (smooth edges) placed on a seamless Soft [Color] background. Medium camera distance for a clear full-body view. A single, (prominent oversized silver metal trombone paperclip:1.5) at the top left corner, showing realistic metallic reflections and micro-scratches. 5 delicate hand-drawn black ink arrows pointing to specific fashion details: "[Feature 1]" (pointing to [Detail]). "[Feature 2]" (pointing to [Detail]). "[Feature 3]" (pointing to [Detail]). "[Feature 4]" (pointing to [Detail]). All annotations are in refined, elegant handwritten cursive. Ray-traced ambient occlusion around the sticker's white border to emphasize physical elevation and depth. Ray-traced soft shadows between the paper layers. High-end editorial studio lighting. Visible tactile paper micro-texture throughout the character's edges, clean and modern high-fashion aesthetic. No grayscale, full color photography, no illustration.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Masterpiece, best quality, high resolution, 8k, (Photorealistic:1.4), (Vibrant natural colors:1.2), (Full body shot:1.6), minimalist fashion scrapbook page. Subject: A full body fashion photo of [Character Description] standing in a [Pose]. The subject is wearing [Detailed Outfit]. The subject is a sharp, high-detail photographic cutout with sticker borders. The sticker has a die-cut white paper edge with visible paper-fiber texture on the cut-line. This white border has a subtle 3D thickness (beveled edge) that catches the light, creating a realistic micro-shadow. Composition: Professional top-down flat-lay view. A thin stack of 3-4 clean-cut premium white paper sheets (smooth edges) placed on a seamless Soft [Color] background. Medium camera distance for a clear full-body view. A single, (prominent oversized silver metal trombone paperclip:1.5) at the top left corner, showing realistic metallic reflections and micro-scratches. 5 delicate hand-drawn black ink arrows pointing to specific fashion details: \"[Feature 1]\" (pointing to [Detail]). \"[Feature 2]\" (pointing to [Detail]). \"[Feature 3]\" (pointing to [Detail]). \"[Feature 4]\" (pointing to [Detail]). All annotations are in refined, elegant handwritten cursive. Ray-traced ambient occlusion around the sticker's white border to emphasize physical elevation and depth. Ray-traced soft shadows between the paper layers. High-end editorial studio lighting. Visible tactile paper micro-texture throughout the character's edges, clean and modern high-fashion aesthetic. No grayscale, full color photography, no illustration."
}
JSON
IM
图像
Poster Design nano-banana-2

Bright summer infographic showcasing watermelon juice, icy t...

Bright summer infographic showcasing watermelon juice, icy texture, watermelon wedges floating. Steps: 📷 Select Ripe Watermelon 📷 Cut & Remove Seeds 📷 Blend Smooth 📷 Serve Chilled Info Bar: Hydration Boost: 92% Freshness Level: High High-contrast red & green palette.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Bright summer infographic showcasing watermelon juice, icy texture, watermelon wedges floating. Steps: 📷 Select Ripe Watermelon 📷 Cut & Remove Seeds 📷 Blend Smooth 📷 Serve Chilled Info Bar: Hydration Boost: 92% Freshness Level: High High-contrast red & green palette."
}
JSON
IM
图像
Poster Design nano-banana-2

[BRAND NAME] [PRODUCT TYPE] (Clothing / Food / Automotive /...

[BRAND NAME] [PRODUCT TYPE] (Clothing / Food / Automotive / Tech). Goal: Generate a professional "scrapbook" style collage poster for [BRAND NAME] centered around a [PRODUCT TYPE]. 1. HERO PRODUCT (BOTTOM FOCUS) - Object: A high-definition, realistic 3D render of a [PRODUCT TYPE] by [BRAND NAME] at the bottom center. - Placement: Slightly angled to show depth, with soft realistic contact shadows on a plain off-white floor. 2. THE MULTI-LAYERED COLLAGE STACK - Photos: A vertical stack of overlapping photos with RAGGED, TORN paper edges rising above the product. - Content: Photos should show [PRODUCT TYPE] in use, lifestyle shots related to [BRAND NAME], and close-ups of specific details. - Materials: Physical swatches of textures related to [PRODUCT TYPE] (e.g., leather/fabric for clothing, metal/carbon for cars, organic ingredients for food). Include visible raw edges and stitching. - Fasteners: Use strips of semi-transparent masking tape and black duct tape with the "[BRAND NAME]" logo printed in white to "hold" the pieces together. 3. GRAPHIC OVERLAYS & STAMPS - Stamp: A black, distressed ink stamp or seal near the hero product with text: "AUTHENTIC QUALITY // SUSTAINABLE CHOICE". - Typography: Small, clean sans-serif and typewriter-style text blocks describing the heritage of [BRAND NAME] placed at the bottom. - Logo: The primary "[BRAND NAME]" logo centered at the very bottom in a minimalist font. 4. STYLE & ATMOSPHERE - Aesthetic: Industrial DIY, workshop moodboard, high-end editorial collage. - Lighting: Bright, studio high-key lighting with soft, multi-layered shadows between the paper scraps and textures. - Quality: 8K resolution, macro detail on paper grain, fabric fibers, and tape adhesive.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "[BRAND NAME] [PRODUCT TYPE] (Clothing / Food / Automotive / Tech). Goal: Generate a professional \"scrapbook\" style collage poster for [BRAND NAME] centered around a [PRODUCT TYPE]. 1. HERO PRODUCT (BOTTOM FOCUS) - Object: A high-definition, realistic 3D render of a [PRODUCT TYPE] by [BRAND NAME] at the bottom center. - Placement: Slightly angled to show depth, with soft realistic contact shadows on a plain off-white floor. 2. THE MULTI-LAYERED COLLAGE STACK - Photos: A vertical stack of overlapping photos with RAGGED, TORN paper edges rising above the product. - Content: Photos should show [PRODUCT TYPE] in use, lifestyle shots related to [BRAND NAME], and close-ups of specific details. - Materials: Physical swatches of textures related to [PRODUCT TYPE] (e.g., leather/fabric for clothing, metal/carbon for cars, organic ingredients for food). Include visible raw edges and stitching. - Fasteners: Use strips of semi-transparent masking tape and black duct tape with the \"[BRAND NAME]\" logo printed in white to \"hold\" the pieces together. 3. GRAPHIC OVERLAYS & STAMPS - Stamp: A black, distressed ink stamp or seal near the hero product with text: \"AUTHENTIC QUALITY // SUSTAINABLE CHOICE\". - Typography: Small, clean sans-serif and typewriter-style text blocks describing the heritage of [BRAND NAME] placed at the bottom. - Logo: The primary \"[BRAND NAME]\" logo centered at the very bottom in a minimalist font. 4. STYLE & ATMOSPHERE - Aesthetic: Industrial DIY, workshop moodboard, high-end editorial collage. - Lighting: Bright, studio high-key lighting with soft, multi-layered shadows between the paper scraps and textures. - Quality: 8K resolution, macro detail on paper grain, fabric fibers, and tape adhesive."
}
JSON
IM
图像
Poster Design nano-banana-2

A cute young girl with short black hair and bangs smiling wh...

A cute young girl with short black hair and bangs smiling while holding a red KitKat Dark chocolate bar covering one eye, resting her cheek on her hand, wearing a cozy red and beige patterned winter sweater. The background and table are solid bright red. Several KitKat chocolate bars are placed on the table in front of her. Soft studio lighting, vibrant colors, commercial food advertisement style, ultra-realistic photography, sharp focus, high detail, 50mm lens, shallow depth of field, professional product photography, centered composition.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A cute young girl with short black hair and bangs smiling while holding a red KitKat Dark chocolate bar covering one eye, resting her cheek on her hand, wearing a cozy red and beige patterned winter sweater. The background and table are solid bright red. Several KitKat chocolate bars are placed on the table in front of her. Soft studio lighting, vibrant colors, commercial food advertisement style, ultra-realistic photography, sharp focus, high detail, 50mm lens, shallow depth of field, professional product photography, centered composition."
}
JSON
IM
图像
Poster Design nano-banana-2

[BRAND NAME]. Act as a Creative Director and Fashion Photogr...

[BRAND NAME]. Act as a Creative Director and Fashion Photographer creating a high-end editorial lookbook image with a UI overlay layer. 1. THE SUBJECT (AVANT-GARDE STREETWEAR & NATURAL POSE): A fashion model stands centrally in a clean studio. Fashion Style: The outfit is a striking, conceptual "Modern Avant-Garde Streetwear" look that interprets the aesthetic and color palette of [BRAND NAME]. Think high-fashion meets street culture: experimental silhouettes, deconstructed layering, oversized proportions, unique material combinations, and bold details. It should feel innovative and editorial, but still grounded in streetwear, avoiding basic casual clothes. Pose: The model adopts a natural, relaxed, and effortless editorial pose (e.g., hands casually in pockets, a slight lean, looking off-camera or gently at the camera). Absolutely NO robotic, stiff, or "T-pose" stances. 2. THE UI OVERLAY (FROSTED GLASS RECTANGLE): Superimposed directly in front of the model's torso is a large, vertical Floating UI Element. Shape & Outline: A simple vertical rectangle with rounded corners, framed by a clean 2px solid White Stroke. Material (Glassmorphism): The interior of this rectangle is "Frosted Glass". The part of the model's outfit behind this glass must be heavily blurred (high Gaussian Blur), creating a translucent depth effect, while the rest of the model remains razor-sharp. 3. UI CONTENT (MINIMALIST & SMALL): Inside the frosted glass pane, place two elements in pure Monochrome White: Center: The official [BRAND NAME] logo, perfectly centered. Below Logo: Positioned significantly higher than the bottom edge, place two VERY SMALL, minimalist white navigation arrows (one pointing Left "<", one pointing Right ">"). They should be subtle and approximately 50% smaller than standard UI icons. 4. PHOTOGRAPHY STYLE & COMPOSITION (STRICT FRAMING): Style: High-End Editorial Fashion Photography. Real film grain, sophisticated soft studio lighting that emphasizes fabric textures. It must look like a real photograph, not a CGI render. Background: Infinite, pure White Studio Cyclorama. Framing (STRICT CONSTRAINT): The shot is a Wide Full-Body Photograph. The entire model (from top of head to bottom of feet) AND the entire UI overlay must be COMPLETELY CONTAINED within the image boundaries. There must be absolutely ZERO CROPPING of the subject or UI. There must be a very large, generous amount of empty negative space ("air") surrounding the subject on all four sides.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "[BRAND NAME]. Act as a Creative Director and Fashion Photographer creating a high-end editorial lookbook image with a UI overlay layer. 1. THE SUBJECT (AVANT-GARDE STREETWEAR & NATURAL POSE): A fashion model stands centrally in a clean studio. Fashion Style: The outfit is a striking, conceptual \"Modern Avant-Garde Streetwear\" look that interprets the aesthetic and color palette of [BRAND NAME]. Think high-fashion meets street culture: experimental silhouettes, deconstructed layering, oversized proportions, unique material combinations, and bold details. It should feel innovative and editorial, but still grounded in streetwear, avoiding basic casual clothes. Pose: The model adopts a natural, relaxed, and effortless editorial pose (e.g., hands casually in pockets, a slight lean, looking off-camera or gently at the camera). Absolutely NO robotic, stiff, or \"T-pose\" stances. 2. THE UI OVERLAY (FROSTED GLASS RECTANGLE): Superimposed directly in front of the model's torso is a large, vertical Floating UI Element. Shape & Outline: A simple vertical rectangle with rounded corners, framed by a clean 2px solid White Stroke. Material (Glassmorphism): The interior of this rectangle is \"Frosted Glass\". The part of the model's outfit behind this glass must be heavily blurred (high Gaussian Blur), creating a translucent depth effect, while the rest of the model remains razor-sharp. 3. UI CONTENT (MINIMALIST & SMALL): Inside the frosted glass pane, place two elements in pure Monochrome White: Center: The official [BRAND NAME] logo, perfectly centered. Below Logo: Positioned significantly higher than the bottom edge, place two VERY SMALL, minimalist white navigation arrows (one pointing Left \"<\", one pointing Right \">\"). They should be subtle and approximately 50% smaller than standard UI icons. 4. PHOTOGRAPHY STYLE & COMPOSITION (STRICT FRAMING): Style: High-End Editorial Fashion Photography. Real film grain, sophisticated soft studio lighting that emphasizes fabric textures. It must look like a real photograph, not a CGI render. Background: Infinite, pure White Studio Cyclorama. Framing (STRICT CONSTRAINT): The shot is a Wide Full-Body Photograph. The entire model (from top of head to bottom of feet) AND the entire UI overlay must be COMPLETELY CONTAINED within the image boundaries. There must be absolutely ZERO CROPPING of the subject or UI. There must be a very large, generous amount of empty negative space (\"air\") surrounding the subject on all four sides."
}
JSON
IM
图像
Poster Design nano-banana-2

A professional commercial fashion advertisement featuring [a...

A professional commercial fashion advertisement featuring [a young male model] in the uploaded image, sitting on a minimalist white matte cube. He has a neutral, confident expression and is looking directly at the camera. Attire & Styling: Hoodie: A high-quality, [heavyweight forest green (British Racing Green) hoodie]. It features a relaxed fit, a spacious kangaroo pocket, and metal-tipped drawstrings. Bottoms: Clean, slim-fit white trousers with visible seams. Footwear: Stylish low-top sneakers in a color-blocked design of forest green, navy blue, and white, with off-white midsoles and white laces. Accessories: Simple silver bands/rings on his fingers. Graphic Design & Layout: Typography: The word [HOODIE] is written in a massive, elegant high-contrast serif font across the top. A small, four-pointed yellow spark icon is centered inside the "O". Above this, [K A I R O P R E M I U M] is printed in a wide-spaced sans-serif font. Branding Elements: A dark green diagonal "caution tape" style ribbon crosses the bottom third of the frame, with the words [PREMIUM HOODIE] repeating in white uppercase text. UI Accents: * A yellow pill-shaped size selector labeled "S M L XL" on the left. A small thumbnail of the hoodie floating on the mid-left. Three circular color swatches (Green, Yellow, Black) on the right side. Two blocks of justified serif body text describing the product's comfort and eco-friendly materials. The URL [www.meigen.ai] in the bottom left corner. Environment & Lighting: Setting: A clean, bright, white-on-white minimalist studio cove. Lighting: Soft, diffused studio lighting creates gentle shadows under the model and the cube, emphasizing the rich texture of the green fabric and the crispness of the white pants. Color Palette: Deep forest green, bright white, and golden yellow accents.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A professional commercial fashion advertisement featuring [a young male model] in the uploaded image, sitting on a minimalist white matte cube. He has a neutral, confident expression and is looking directly at the camera. Attire & Styling: Hoodie: A high-quality, [heavyweight forest green (British Racing Green) hoodie]. It features a relaxed fit, a spacious kangaroo pocket, and metal-tipped drawstrings. Bottoms: Clean, slim-fit white trousers with visible seams. Footwear: Stylish low-top sneakers in a color-blocked design of forest green, navy blue, and white, with off-white midsoles and white laces. Accessories: Simple silver bands/rings on his fingers. Graphic Design & Layout: Typography: The word [HOODIE] is written in a massive, elegant high-contrast serif font across the top. A small, four-pointed yellow spark icon is centered inside the \"O\". Above this, [K A I R O P R E M I U M] is printed in a wide-spaced sans-serif font. Branding Elements: A dark green diagonal \"caution tape\" style ribbon crosses the bottom third of the frame, with the words [PREMIUM HOODIE] repeating in white uppercase text. UI Accents: * A yellow pill-shaped size selector labeled \"S M L XL\" on the left. A small thumbnail of the hoodie floating on the mid-left. Three circular color swatches (Green, Yellow, Black) on the right side. Two blocks of justified serif body text describing the product's comfort and eco-friendly materials. The URL [www.meigen.ai] in the bottom left corner. Environment & Lighting: Setting: A clean, bright, white-on-white minimalist studio cove. Lighting: Soft, diffused studio lighting creates gentle shadows under the model and the cube, emphasizing the rich texture of the green fabric and the crispness of the white pants. Color Palette: Deep forest green, bright white, and golden yellow accents."
}
JSON
IM
图像
Poster Design nano-banana-2

A stylized, retro-futuristic music poster in a synthwave aes...

A stylized, retro-futuristic music poster in a synthwave aesthetic. The central focus is a woman in profile with a platinum blonde bob haircut, wearing oversized, chunky pink opaque visor sunglasses and a high-collar, extremely glossy pink vinyl jacket with visible zipper detail. Behind her, the word "HEIS" is written in massive, dark purple, condensed block typography, partially hidden by her head. The background is a clean gradient shifting from soft magenta to deep purple, overlaid with a subtle film grain texture. Lighting: Soft studio lighting with high-specular highlights on the glossy jacket and rim lighting on the hair. Color Palette: Dominant shades of bubblegum pink, deep violet, and lavender. Graphics: A small barcode on the left, a minimalist star logo in the bottom-left corner, and four lines of small sans-serif song lyrics in the bottom-right corner. Atmosphere: High-fashion, electronic dance music vibe, clean and polished composition.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A stylized, retro-futuristic music poster in a synthwave aesthetic. The central focus is a woman in profile with a platinum blonde bob haircut, wearing oversized, chunky pink opaque visor sunglasses and a high-collar, extremely glossy pink vinyl jacket with visible zipper detail. Behind her, the word \"HEIS\" is written in massive, dark purple, condensed block typography, partially hidden by her head. The background is a clean gradient shifting from soft magenta to deep purple, overlaid with a subtle film grain texture. Lighting: Soft studio lighting with high-specular highlights on the glossy jacket and rim lighting on the hair. Color Palette: Dominant shades of bubblegum pink, deep violet, and lavender. Graphics: A small barcode on the left, a minimalist star logo in the bottom-left corner, and four lines of small sans-serif song lyrics in the bottom-right corner. Atmosphere: High-fashion, electronic dance music vibe, clean and polished composition."
}
JSON
IM
图像
Poster Design nano-banana-2

果树种植科普展板 | 3:4 竖版 | 博物馆级信息设计 【主标题】 「××果树种植与结果管理指南」 字体:思源黑体 /...

果树种植科普展板 | 3:4 竖版 | 博物馆级信息设计 【主标题】 「××果树种植与结果管理指南」 字体:思源黑体 / 思源宋体混排,确保中文清晰渲染 【副标题】 学名 · 科属 · 原产地 · 主要栽培区 · 结果年限 【中央视觉】 画面中心 25%: 成熟健康的果树实物形态(可选:盆栽 / 幼树 / 结果期枝条), 写实自然博物馆标本风格,树干、叶脉、果实细节清晰 背景: 浅色极简底(米白 / 浅灰) 淡雅农业几何纹样 / 果树年轮 / 叶脉结构底纹(透明度 15–20%) 【信息布局|自动填充真实农业数据】 左侧(蓝绿色系 · 生长环境) 水分管理 幼树 / 成树浇水频率 不同生长期(萌芽 / 开花 / 膨果 / 休眠)需水差异 灌溉方式(滴灌 / 漫灌) 土壤含水量判断方法 光照需求 全日照 / 半日照 每日有效光照时长 光照不足 / 过强的结果影响对比图 通风与间距 行距株距建议 忌密植、忌积水低洼环境 右侧(黄绿色系 · 营养与土壤) 施肥管理 基肥 / 追肥 / 花前肥 / 果后肥 NPK 比例饼图(不同时期) 施肥频率与禁忌(避免烧根) 温度与湿度 四季生长温度曲线 花期低温风险提示 湿度过高导致病害示意 土壤条件 土壤类型(沙壤土 / 腐殖土) pH 范围 改土方案(有机质 / 石灰 / 硫磺粉) 【中部横条】 12 个月果树生长与管理时间轴 修剪期 萌芽期 开花授粉期 坐果期 膨果期 采收期 休眠期 (图标化呈现) 【下方病虫害专区|占 30%|红紫警示色】 10 项果树常见病虫害识别卡片(3 行网格) 生理性问题 落花落果(营养 / 温度 / 水分) 果实畸形(授粉不良 / 缺硼) 叶片黄化(缺铁 / 缺氮 / 根系问题) 病菌性病害 4. 炭疽病 5. 褐斑病 6. 根腐病 虫害 7. 蚜虫 8. 红蜘蛛 9. 果实蝇 10. 介壳虫 每张卡片包含: 症状特写图(40%) 识别要点 具体防治方案 药剂名称 + 稀释倍数 + 使用频次 示例: 代森锰锌 600 倍液,7 天 / 次,连喷 2–3 次 应急处理流程图 发现 → 隔离 → 判断 → 对症处理 → 持续观察 【底部信息栏】 果实可食性说明 农药安全间隔期 对蜜蜂 / 宠物 / 人类安全提示 【设计规范】 信息密度:高(留白约 25%) 连接线:由果树向外放射,极细线条 色彩编码: 蓝 = 水分 黄 = 光照 绿 = 营养 红 = 病害 紫 = 虫害 字级层级: 主标题 16pt 正文 12pt 备注 9pt 图标:统一线性农业科普风格 中文排版:行距 1.5,紧凑易读 病害卡片:红色边框 + 症状放大图 【风格参考】 日本果树试验站导览牌 现代自然博物馆农业信息墙 DK《果树栽培图鉴》 【技术参数】 正面平视 / 微俯视 柔和自然光 中大景深 4K 超高清 真实农业与园艺摄影级细节 【关键要求(非常重要)】 所有种植数据、病虫害信息、农药名称与使用浓度,需根据所选果树品种自动填充真实、准确、可查证的专业农业数据 英文补充(生图权重) fruit tree cultivation guide poster, high-density agricultural infographic, museum exhibition style, fruit tree growth cycle, pest and disease identification, Chinese typography, minimalist background, professional horticulture data, realistic fruit tree specimen, 4K ultra high resolution

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "果树种植科普展板 | 3:4 竖版 | 博物馆级信息设计 【主标题】 「××果树种植与结果管理指南」 字体:思源黑体 / 思源宋体混排,确保中文清晰渲染 【副标题】 学名 · 科属 · 原产地 · 主要栽培区 · 结果年限 【中央视觉】 画面中心 25%: 成熟健康的果树实物形态(可选:盆栽 / 幼树 / 结果期枝条), 写实自然博物馆标本风格,树干、叶脉、果实细节清晰 背景: 浅色极简底(米白 / 浅灰) 淡雅农业几何纹样 / 果树年轮 / 叶脉结构底纹(透明度 15–20%) 【信息布局|自动填充真实农业数据】 左侧(蓝绿色系 · 生长环境) 水分管理 幼树 / 成树浇水频率 不同生长期(萌芽 / 开花 / 膨果 / 休眠)需水差异 灌溉方式(滴灌 / 漫灌) 土壤含水量判断方法 光照需求 全日照 / 半日照 每日有效光照时长 光照不足 / 过强的结果影响对比图 通风与间距 行距株距建议 忌密植、忌积水低洼环境 右侧(黄绿色系 · 营养与土壤) 施肥管理 基肥 / 追肥 / 花前肥 / 果后肥 NPK 比例饼图(不同时期) 施肥频率与禁忌(避免烧根) 温度与湿度 四季生长温度曲线 花期低温风险提示 湿度过高导致病害示意 土壤条件 土壤类型(沙壤土 / 腐殖土) pH 范围 改土方案(有机质 / 石灰 / 硫磺粉) 【中部横条】 12 个月果树生长与管理时间轴 修剪期 萌芽期 开花授粉期 坐果期 膨果期 采收期 休眠期 (图标化呈现) 【下方病虫害专区|占 30%|红紫警示色】 10 项果树常见病虫害识别卡片(3 行网格) 生理性问题 落花落果(营养 / 温度 / 水分) 果实畸形(授粉不良 / 缺硼) 叶片黄化(缺铁 / 缺氮 / 根系问题) 病菌性病害 4. 炭疽病 5. 褐斑病 6. 根腐病 虫害 7. 蚜虫 8. 红蜘蛛 9. 果实蝇 10. 介壳虫 每张卡片包含: 症状特写图(40%) 识别要点 具体防治方案 药剂名称 + 稀释倍数 + 使用频次 示例: 代森锰锌 600 倍液,7 天 / 次,连喷 2–3 次 应急处理流程图 发现 → 隔离 → 判断 → 对症处理 → 持续观察 【底部信息栏】 果实可食性说明 农药安全间隔期 对蜜蜂 / 宠物 / 人类安全提示 【设计规范】 信息密度:高(留白约 25%) 连接线:由果树向外放射,极细线条 色彩编码: 蓝 = 水分 黄 = 光照 绿 = 营养 红 = 病害 紫 = 虫害 字级层级: 主标题 16pt 正文 12pt 备注 9pt 图标:统一线性农业科普风格 中文排版:行距 1.5,紧凑易读 病害卡片:红色边框 + 症状放大图 【风格参考】 日本果树试验站导览牌 现代自然博物馆农业信息墙 DK《果树栽培图鉴》 【技术参数】 正面平视 / 微俯视 柔和自然光 中大景深 4K 超高清 真实农业与园艺摄影级细节 【关键要求(非常重要)】 所有种植数据、病虫害信息、农药名称与使用浓度,需根据所选果树品种自动填充真实、准确、可查证的专业农业数据 英文补充(生图权重) fruit tree cultivation guide poster, high-density agricultural infographic, museum exhibition style, fruit tree growth cycle, pest and disease identification, Chinese typography, minimalist background, professional horticulture data, realistic fruit tree specimen, 4K ultra high resolution"
}
JSON
IM
图像
Poster Design nano-banana-2

A high-quality, split-screen fashion editorial advertisement...

A high-quality, split-screen fashion editorial advertisement featuring multiple panels of different colors (yellow, green, deep red, blue). The image shows models wearing Adidas-style tracksuits and casual sportswear in corresponding colors that match their background panel. One male model in yellow is walking, one female model in green is sitting on a speaker, one male model in red is jumping, one female model in blue is sitting by a blue typewriter, one female model in red is posing in a red panel, and one female model in yellow is standing. Clean studio lighting, vibrant solid-color backgrounds, professional fashion photography, minimalist aesthetic, sharp focus

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A high-quality, split-screen fashion editorial advertisement featuring multiple panels of different colors (yellow, green, deep red, blue). The image shows models wearing Adidas-style tracksuits and casual sportswear in corresponding colors that match their background panel. One male model in yellow is walking, one female model in green is sitting on a speaker, one male model in red is jumping, one female model in blue is sitting by a blue typewriter, one female model in red is posing in a red panel, and one female model in yellow is standing. Clean studio lighting, vibrant solid-color backgrounds, professional fashion photography, minimalist aesthetic, sharp focus"
}
JSON
IM
图像
Poster Design nano-banana-2

Ultra-realistic beauty advertisement, close-up of a young wo...

Ultra-realistic beauty advertisement, close-up of a young woman with long wavy brown hair, soft glowing skin, wearing a pink sleeveless top, holding a large pink conditioner bottle labeled “VOIS” toward the camera, playful facial expression, natural makeup, bright studio lighting, clean white background, shallow depth of field, high-end cosmetic campaign, 85mm lens, sharp focus, glossy product texture, vibrant pink tones

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Ultra-realistic beauty advertisement, close-up of a young woman with long wavy brown hair, soft glowing skin, wearing a pink sleeveless top, holding a large pink conditioner bottle labeled “VOIS” toward the camera, playful facial expression, natural makeup, bright studio lighting, clean white background, shallow depth of field, high-end cosmetic campaign, 85mm lens, sharp focus, glossy product texture, vibrant pink tones"
}
JSON
IM
图像
Poster Design nano-banana-2

A high-definition, professional fashion editorial photograph...

A high-definition, professional fashion editorial photograph of a sophisticated woman with a sleek, center-parted bun. She is wearing elegant, thin-rimmed silver glasses and a minimalist white long-sleeved silk blouse. She is posed gracefully with her hands near her face and chest, showcasing a luxury silver watch. The background is a clean, bright white with bold, high-contrast black serif typography reading 'VOGUE' at the top. Studio lighting, soft skin texture, sharp focus on the eyes, 8k resolution, shot on a 85mm lens for a flattering portrait compression." ​Tips for Customizing the Result: ​The Model: If you want a different look, change "sophisticated woman" to specific features like "freckles," "dark curly hair," or "minimalist makeup." ​The Brand: You can swap "VOGUE" for any other magazine title or leave it blank for a clean fashion portrait. ​The Jewelry: Adjust the metal (e.g., "gold watch," "rose gold frames") to change the color palette of the image.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A high-definition, professional fashion editorial photograph of a sophisticated woman with a sleek, center-parted bun. She is wearing elegant, thin-rimmed silver glasses and a minimalist white long-sleeved silk blouse. She is posed gracefully with her hands near her face and chest, showcasing a luxury silver watch. The background is a clean, bright white with bold, high-contrast black serif typography reading 'VOGUE' at the top. Studio lighting, soft skin texture, sharp focus on the eyes, 8k resolution, shot on a 85mm lens for a flattering portrait compression.\" ​Tips for Customizing the Result: ​The Model: If you want a different look, change \"sophisticated woman\" to specific features like \"freckles,\" \"dark curly hair,\" or \"minimalist makeup.\" ​The Brand: You can swap \"VOGUE\" for any other magazine title or leave it blank for a clean fashion portrait. ​The Jewelry: Adjust the metal (e.g., \"gold watch,\" \"rose gold frames\") to change the color palette of the image."
}
JSON
IM
图像
Poster Design nano-banana-2

A MAN WITH LIGHT-MEDIUM SKIN, SHORT DARK CURLY HAIR WITH A F...

A MAN WITH LIGHT-MEDIUM SKIN, SHORT DARK CURLY HAIR WITH A FADE HAIRCUT,BROWN EYES, AND A WELL-GROOMED SHORT BEARD, WEARING A GLOSSY OVERSIZED RED PUFFER JACKET AND LOOSE RED PANTS WITH WHITE AND RED NIKE SNEAKERS, CROUCHING LOW WITH ONE KNEE UP AND ONE LEG FORWARD, LEFT ARM RESTING CASUALLY OVER THE RAISED KNEE AND RIGHT HAND RELAXED NEAR THE OTHER LEG, BODY ANGLED SLIGHTLY TO THE SIDE WHILE HEAD TILTS FORWARD LOOKING DIRECTLY AT THE CAMERA WITH A CONFIDENT EXPRESSION, ULTRA WIDE-ANGLE LOW PERSPECTIVE SHOT EMPHASIZING THE FRONT SNEAKER APPEARING LARGE AND DOMINANT IN THE FOREGROUND, SET IN A FULLY RED ENVIRONMENT WITH SMOOTH FLOOR AND BACKDROP FEATURING LARGE WHITE NIKE SWOOSH LOGOS BEHIND AND FLOWING RIBBON-LIKE RED SHAPES AROUND, HYPER-REALISTIC PHOTOGRAPHY, EXTREMELY SHARP DETAILS ON FABRIC SHINE AND SNEAKER TEXTURE, DRAMATIC STUDIO LIGHTING WITH STRONG HIGHLIGHTS AND SOFT SHADOWS SATURATED MONOCHROMATIC RED COLOR PALETTE WITH WHITE ACCENTS, MODERN STREETWEAR CAMPAIGN STYLE, NO BLUR, NO DISTORTION, NO EXTRA LIMBS, NO ARTIFACTS

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A MAN WITH LIGHT-MEDIUM SKIN, SHORT DARK CURLY HAIR WITH A FADE HAIRCUT,BROWN EYES, AND A WELL-GROOMED SHORT BEARD, WEARING A GLOSSY OVERSIZED RED PUFFER JACKET AND LOOSE RED PANTS WITH WHITE AND RED NIKE SNEAKERS, CROUCHING LOW WITH ONE KNEE UP AND ONE LEG FORWARD, LEFT ARM RESTING CASUALLY OVER THE RAISED KNEE AND RIGHT HAND RELAXED NEAR THE OTHER LEG, BODY ANGLED SLIGHTLY TO THE SIDE WHILE HEAD TILTS FORWARD LOOKING DIRECTLY AT THE CAMERA WITH A CONFIDENT EXPRESSION, ULTRA WIDE-ANGLE LOW PERSPECTIVE SHOT EMPHASIZING THE FRONT SNEAKER APPEARING LARGE AND DOMINANT IN THE FOREGROUND, SET IN A FULLY RED ENVIRONMENT WITH SMOOTH FLOOR AND BACKDROP FEATURING LARGE WHITE NIKE SWOOSH LOGOS BEHIND AND FLOWING RIBBON-LIKE RED SHAPES AROUND, HYPER-REALISTIC PHOTOGRAPHY, EXTREMELY SHARP DETAILS ON FABRIC SHINE AND SNEAKER TEXTURE, DRAMATIC STUDIO LIGHTING WITH STRONG HIGHLIGHTS AND SOFT SHADOWS SATURATED MONOCHROMATIC RED COLOR PALETTE WITH WHITE ACCENTS, MODERN STREETWEAR CAMPAIGN STYLE, NO BLUR, NO DISTORTION, NO EXTRA LIMBS, NO ARTIFACTS"
}
JSON
IM
图像
Poster Design nano-banana-2

Create a hyper-realistic 8K UHD cinematic poster portrait of...

Create a hyper-realistic 8K UHD cinematic poster portrait of a man inspired by the reference image, with a similar hairstyle, facial structure, and body build while maintaining a natural realistic look. Shot as if captured on a 35mm lens, f/1.8, with sharp focus, creamy bokeh, cinematic color grading, and detailed DSLR skin texture. Design a modern graphic poster titled “Chill-out.” The man wears a red hoodie, black cuffed joggers, red and white Air Jordan high-top sneakers, dark sunglasses, and silver rings. He sits in a relaxed reclined pose leaning against oversized typography, one leg bent and the other slightly extended toward the viewer. His body angles right while his face turns toward the camera in a confident three-quarter view. Background is matte textured black. Large bold white sans-serif text “chill” and “out” forms a bench-like structure, with “chill” underlined. Add orange circles, squares, thin white grid lines, and phrases: “Life is so much easier when you just chill-out” and “Less stress, more chill.” Bottom-right watermark: K(@ ChillaiKalan) ,

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Create a hyper-realistic 8K UHD cinematic poster portrait of a man inspired by the reference image, with a similar hairstyle, facial structure, and body build while maintaining a natural realistic look. Shot as if captured on a 35mm lens, f/1.8, with sharp focus, creamy bokeh, cinematic color grading, and detailed DSLR skin texture. Design a modern graphic poster titled “Chill-out.” The man wears a red hoodie, black cuffed joggers, red and white Air Jordan high-top sneakers, dark sunglasses, and silver rings. He sits in a relaxed reclined pose leaning against oversized typography, one leg bent and the other slightly extended toward the viewer. His body angles right while his face turns toward the camera in a confident three-quarter view. Background is matte textured black. Large bold white sans-serif text “chill” and “out” forms a bench-like structure, with “chill” underlined. Add orange circles, squares, thin white grid lines, and phrases: “Life is so much easier when you just chill-out” and “Less stress, more chill.” Bottom-right watermark: K(@ ChillaiKalan) ,"
}
JSON
IM
图像
Poster Design nano-banana-2

[Lebron James]. Act as a graphic designer specializing in "M...

[Lebron James]. Act as a graphic designer specializing in "Modern Vintage" sports and music memorabilia posters. 1. COLOR LOGIC (AUTONOMOUS): Analyze the Subject: Instantly identify the single most iconic color associated with [PERSON / CHARACTER NAME] (e.g., if Michael Jordan -> Chicago Red; if Prince -> Purple; if Spotify CEO -> Vibrant Green). The Background: Fill the entire background with this Solid, Vibrant Brand Color. Texture: Apply a visible Heavy Film Grain overlay to the solid color to kill the digital perfection. 2. CENTRAL COMPOSITION (NARRATIVE SILHOUETTE): The Container: Place a massive, high-contrast Black & White Cut-Out Photo of [PERSON / CHARACTER NAME] in the center. It can slightly breach the top or side borders (dynamic cropping). The "Montage" Fill (CRITICAL): The interior of the subject's clothing or body shadows is NOT solid black. It is filled with a Complex Monochrome Collage. Collage Content: Inside the silhouette, layer smaller, high-contrast photos representing key career milestones, newspaper headlines, famous poses, or relevant machinery/tools associated with them. Visual Effect: This creates a "Double Exposure" effect where the hero's shape tells their story. 3. PRINT AESTHETIC (HALFTONE & NEWSPAPER): Halftone Effect: Apply a distinct "Coarse Halftone Dot Pattern" (Newsprint Screen effect) to the entire central figure and collage. The dots should be visible, creating that retro 90s zine/newspaper aesthetic. Contrast: The image must be strictly Duotone or Tritone (Background Color + Black Ink + White Paper negative space). No full-color photos. 4. FOOTER ELEMENTS (BRANDING): Bottom Left (Logo): Place a specific Logo or Icon relevant to the subject (e.g., team logo, company logo, or personal symbol). Size: Small and discrete (approx 15% of width). Color: High contrast to the background (White or Black). Bottom Right (Signature): Place the subject's Autograph/Signature. Logic: If the signature is public domain, simulate the real one. If fictional, generate a believable handwritten script signature. Color: Same contrast color as the logo. OUTPUT: A raw, textured, vintage-style poster design.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "[Lebron James]. Act as a graphic designer specializing in \"Modern Vintage\" sports and music memorabilia posters. 1. COLOR LOGIC (AUTONOMOUS): Analyze the Subject: Instantly identify the single most iconic color associated with [PERSON / CHARACTER NAME] (e.g., if Michael Jordan -> Chicago Red; if Prince -> Purple; if Spotify CEO -> Vibrant Green). The Background: Fill the entire background with this Solid, Vibrant Brand Color. Texture: Apply a visible Heavy Film Grain overlay to the solid color to kill the digital perfection. 2. CENTRAL COMPOSITION (NARRATIVE SILHOUETTE): The Container: Place a massive, high-contrast Black & White Cut-Out Photo of [PERSON / CHARACTER NAME] in the center. It can slightly breach the top or side borders (dynamic cropping). The \"Montage\" Fill (CRITICAL): The interior of the subject's clothing or body shadows is NOT solid black. It is filled with a Complex Monochrome Collage. Collage Content: Inside the silhouette, layer smaller, high-contrast photos representing key career milestones, newspaper headlines, famous poses, or relevant machinery/tools associated with them. Visual Effect: This creates a \"Double Exposure\" effect where the hero's shape tells their story. 3. PRINT AESTHETIC (HALFTONE & NEWSPAPER): Halftone Effect: Apply a distinct \"Coarse Halftone Dot Pattern\" (Newsprint Screen effect) to the entire central figure and collage. The dots should be visible, creating that retro 90s zine/newspaper aesthetic. Contrast: The image must be strictly Duotone or Tritone (Background Color + Black Ink + White Paper negative space). No full-color photos. 4. FOOTER ELEMENTS (BRANDING): Bottom Left (Logo): Place a specific Logo or Icon relevant to the subject (e.g., team logo, company logo, or personal symbol). Size: Small and discrete (approx 15% of width). Color: High contrast to the background (White or Black). Bottom Right (Signature): Place the subject's Autograph/Signature. Logic: If the signature is public domain, simulate the real one. If fictional, generate a believable handwritten script signature. Color: Same contrast color as the logo. OUTPUT: A raw, textured, vintage-style poster design."
}
JSON
IM
图像
Poster Design nano-banana-2

A creative romantic digital photo collage featuring a young...

A creative romantic digital photo collage featuring a young handsome woman in a peacock green frock. The main subject is a full-body cutout placed slightly left, turned back and smiling over her shoulder, wearing a peacock green embellished rich frock. Behind and around her is a semi-circular collage of multiple black-and-white portrait shots of the same woman, each in different expressions and poses, arranged in curved segments. The background is a soft light grey textured surface with a minimal aesthetic.Decorative elements include pink butterflies, a floral daisy near the center, red heart balloons, and cute love-themed stickers Handwritten-style text elements like “Queen of Beauty,” “I Love you,” and “Capture the moment” are scattered around. A small heartbeat line with a heart icon is included. At the bottom, the name “x creator” appears in elegant cursive typography. Soft shadows, smooth cutout blending, high-end Photoshop manipulation, romantic mood, pastel tones.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A creative romantic digital photo collage featuring a young handsome woman in a peacock green frock. The main subject is a full-body cutout placed slightly left, turned back and smiling over her shoulder, wearing a peacock green embellished rich frock. Behind and around her is a semi-circular collage of multiple black-and-white portrait shots of the same woman, each in different expressions and poses, arranged in curved segments. The background is a soft light grey textured surface with a minimal aesthetic.Decorative elements include pink butterflies, a floral daisy near the center, red heart balloons, and cute love-themed stickers Handwritten-style text elements like “Queen of Beauty,” “I Love you,” and “Capture the moment” are scattered around. A small heartbeat line with a heart icon is included. At the bottom, the name “x creator” appears in elegant cursive typography. Soft shadows, smooth cutout blending, high-end Photoshop manipulation, romantic mood, pastel tones."
}
JSON
IM
图像
Poster Design nano-banana-2

Editorial photography, a woman wearing a structured deep tea...

Editorial photography, a woman wearing a structured deep teal blazer standing against a pale blue sky. A bird in heavy motion blur is flying across her face, obscuring her features, surrealist style. High-grain paper texture, cinematic soft lighting, minimalist composition. Magazine cover aesthetic with a clean white vertical sidebar on the left containing bold black typography. Muted cool tones, artistic blur, 35mm film aesthetic, avant-garde fashion vibe

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Editorial photography, a woman wearing a structured deep teal blazer standing against a pale blue sky. A bird in heavy motion blur is flying across her face, obscuring her features, surrealist style. High-grain paper texture, cinematic soft lighting, minimalist composition. Magazine cover aesthetic with a clean white vertical sidebar on the left containing bold black typography. Muted cool tones, artistic blur, 35mm film aesthetic, avant-garde fashion vibe"
}
JSON
IM
图像
Poster Design nano-banana-2

Using the attached image, create a professional industrial f...

Using the attached image, create a professional industrial fashion design illustration sheet for a high-end streetwear outfit. A centered heroic full-body 3D render of a modern urban look (oversized hoodie, cargo pants, sneakers), with realistic fabric physics, detailed stitching, and layered textiles. Soft studio lighting with subtle shadows and premium editorial finish. Surround with technical views: Front, back, side, 3/4 perspective Flat lay pattern layout Include sketches: Panel segmentation (oversized cuts) Stitching and seam details Elastic waistband, cuffs, drawstrings Measurement arrows in millimeters Materials (handwritten notes): Heavy cotton fleece, nylon, ripstop Matte + slightly worn textures Reinforced stress zones Extras: Street branding placement (logos, tags, patches) Pocket systems and utility design Style: Clean sketchbook + graffiti undertone, realistic + pencil hybrid, ultra-detailed.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Using the attached image, create a professional industrial fashion design illustration sheet for a high-end streetwear outfit. A centered heroic full-body 3D render of a modern urban look (oversized hoodie, cargo pants, sneakers), with realistic fabric physics, detailed stitching, and layered textiles. Soft studio lighting with subtle shadows and premium editorial finish. Surround with technical views: Front, back, side, 3/4 perspective Flat lay pattern layout Include sketches: Panel segmentation (oversized cuts) Stitching and seam details Elastic waistband, cuffs, drawstrings Measurement arrows in millimeters Materials (handwritten notes): Heavy cotton fleece, nylon, ripstop Matte + slightly worn textures Reinforced stress zones Extras: Street branding placement (logos, tags, patches) Pocket systems and utility design Style: Clean sketchbook + graffiti undertone, realistic + pencil hybrid, ultra-detailed."
}
JSON
IM
图像
Poster Design nano-banana-2

{ "project_name": "Premium_Dark_Horizon_Product_Reveal",...

{ "project_name": "Premium_Dark_Horizon_Product_Reveal", "USER_CUSTOMIZATION": { "INSTRUCTIONS": "Replace 'current_setting' with the product you want to render. The system will AUTOMATICALLY position it in a specific, fixed pose: tilted back with its bottom-front tip touching the horizon edge.", "product": { "current_setting": "Mac Mini", "description": "The product will be rendered with a dark, metallic, highly detailed finish." } }, "settings": { "style": "Cinematic, high-contrast product photography in a dark environment. Ultra-sharp focus, rich color grading.", "aspect_ratio": "4:5" }, "prompt_construction": { "MAIN_SUBJECT": { "subject": "The [product from USER_CUSTOMIZATION] is perfectly centered.", "appearance": "It has a premium, dark silver/chrome-like finish, looking solid and incredibly sharp. There is an ever-so-slight, subtle warmth mixed into the reflections on the metallic surfaces, giving it depth.", "pose_and_contact": "CRITICAL: The product is tilted back dramatically, away from the viewer towards the top of the frame. Its bottom-front tip or edge is PRECISELY touching the sharp center edge of the horizon arc. It must NOT float above the arc. This pose prominently displays the main surface (e.g., laptop lid with logo, phone screen/back, watch face)." }, "HORIZON_ARC": { "description": "A single, clean, massive, dark horizon line arcs across the entire width of the screen from left to right. It is NOT a complete sphere, glowing ball, or circle, but the very edge of a dark planet-like surface.", "light_profile": "The edge itself is defined by a thin, sharp, soft-glow blue light. The light is thinnest and sharpest (purplish-blue) in the bottom-left, widening slightly to a brighter, soft white-blue rim on the right before fading. It must NOT reveal the spherical form of the surface below; the area below the arc must remain pitch black.", "reflection_effect": "CRITICAL: There are ABSOLUTELY NO reflections of the product on the horizon surface. The surface is dark and matte." }, "LIGHTING_AND_BACKGROUND": { "background": "Pure, absolute black negative space. There are NO visible light rays, gradients, starfields, halos, or any other light shapes above or around the product.", "key_lighting": "A strong key light from the TOP-LEFT sculpts the product, emphasizing its form and the logo/main feature. It does NOT create visible rays.", "rim_lighting": "A distinct rim light from the BACK-LEFT separates the product from the dark background.", "fill_lighting": "A soft fill light from the BOTTOM-RIGHT opens up the shadows slightly.", "color_cast": "All lighting is dominated by deep, rich blues, consistent with the horizon arc." }, "COMPOSITION_AND_FRAMING": { "framing": "The product is perfectly centered. The camera distance is fixed, ensuring the product is large and dominant but NEVER cut off.", "perspective": "A sharp, eye-level perspective relative to the product's center, looking slightly down towards the horizon." } }, "NEGATIVE_CONSTRAINTS": [ "visible light rays", "glow or light source in the top left corner", "product floating above the arc", "product not touching the arc edge", "product lying flat", "visible sphere or glowing orb form below the arc", "halos or circular lights above the product", "harsh light glows", "reflections of the product on the horizon", "background other than pure black", "product cut off by frame edge", "upside-down or downward curve", "squiggly arc" ], "FULL_PROMPT_STRING": "A cinematic product photograph of [product from USER_CUSTOMIZATION] with a dark, sharp, silver/chrome finish and subtle warmth. The product is perfectly centered, tilted back dramatically with its bottom-front tip precisely touching the sharp center edge of a single, massive, dark horizon arc that spans the frame. This arc is a thin, sharp, soft-glow blue light, purplish-blue in the bottom-left, widening to a soft white-blue rim on the right, before fading to pitch black. The area below the arc is absolute black. There are NO reflections on the horizon. The background is pure, light-ray-free, halo-free black negative space. There is NO glow or light source in the top left corner. Key light from the top-left, rim light from the back-left, and soft fill from the bottom-right create a dramatic, volumetric, blue-dominated lighting scheme. The product is never cut off. 8k resolution, highly detailed." }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"project_name\": \"Premium_Dark_Horizon_Product_Reveal\", \"USER_CUSTOMIZATION\": { \"INSTRUCTIONS\": \"Replace 'current_setting' with the product you want to render. The system will AUTOMATICALLY position it in a specific, fixed pose: tilted back with its bottom-front tip touching the horizon edge.\", \"product\": { \"current_setting\": \"Mac Mini\", \"description\": \"The product will be rendered with a dark, metallic, highly detailed finish.\" } }, \"settings\": { \"style\": \"Cinematic, high-contrast product photography in a dark environment. Ultra-sharp focus, rich color grading.\", \"aspect_ratio\": \"4:5\" }, \"prompt_construction\": { \"MAIN_SUBJECT\": { \"subject\": \"The [product from USER_CUSTOMIZATION] is perfectly centered.\", \"appearance\": \"It has a premium, dark silver/chrome-like finish, looking solid and incredibly sharp. There is an ever-so-slight, subtle warmth mixed into the reflections on the metallic surfaces, giving it depth.\", \"pose_and_contact\": \"CRITICAL: The product is tilted back dramatically, away from the viewer towards the top of the frame. Its bottom-front tip or edge is PRECISELY touching the sharp center edge of the horizon arc. It must NOT float above the arc. This pose prominently displays the main surface (e.g., laptop lid with logo, phone screen/back, watch face).\" }, \"HORIZON_ARC\": { \"description\": \"A single, clean, massive, dark horizon line arcs across the entire width of the screen from left to right. It is NOT a complete sphere, glowing ball, or circle, but the very edge of a dark planet-like surface.\", \"light_profile\": \"The edge itself is defined by a thin, sharp, soft-glow blue light. The light is thinnest and sharpest (purplish-blue) in the bottom-left, widening slightly to a brighter, soft white-blue rim on the right before fading. It must NOT reveal the spherical form of the surface below; the area below the arc must remain pitch black.\", \"reflection_effect\": \"CRITICAL: There are ABSOLUTELY NO reflections of the product on the horizon surface. The surface is dark and matte.\" }, \"LIGHTING_AND_BACKGROUND\": { \"background\": \"Pure, absolute black negative space. There are NO visible light rays, gradients, starfields, halos, or any other light shapes above or around the product.\", \"key_lighting\": \"A strong key light from the TOP-LEFT sculpts the product, emphasizing its form and the logo/main feature. It does NOT create visible rays.\", \"rim_lighting\": \"A distinct rim light from the BACK-LEFT separates the product from the dark background.\", \"fill_lighting\": \"A soft fill light from the BOTTOM-RIGHT opens up the shadows slightly.\", \"color_cast\": \"All lighting is dominated by deep, rich blues, consistent with the horizon arc.\" }, \"COMPOSITION_AND_FRAMING\": { \"framing\": \"The product is perfectly centered. The camera distance is fixed, ensuring the product is large and dominant but NEVER cut off.\", \"perspective\": \"A sharp, eye-level perspective relative to the product's center, looking slightly down towards the horizon.\" } }, \"NEGATIVE_CONSTRAINTS\": [ \"visible light rays\", \"glow or light source in the top left corner\", \"product floating above the arc\", \"product not touching the arc edge\", \"product lying flat\", \"visible sphere or glowing orb form below the arc\", \"halos or circular lights above the product\", \"harsh light glows\", \"reflections of the product on the horizon\", \"background other than pure black\", \"product cut off by frame edge\", \"upside-down or downward curve\", \"squiggly arc\" ], \"FULL_PROMPT_STRING\": \"A cinematic product photograph of [product from USER_CUSTOMIZATION] with a dark, sharp, silver/chrome finish and subtle warmth. The product is perfectly centered, tilted back dramatically with its bottom-front tip precisely touching the sharp center edge of a single, massive, dark horizon arc that spans the frame. This arc is a thin, sharp, soft-glow blue light, purplish-blue in the bottom-left, widening to a soft white-blue rim on the right, before fading to pitch black. The area below the arc is absolute black. There are NO reflections on the horizon. The background is pure, light-ray-free, halo-free black negative space. There is NO glow or light source in the top left corner. Key light from the top-left, rim light from the back-left, and soft fill from the bottom-right create a dramatic, volumetric, blue-dominated lighting scheme. The product is never cut off. 8k resolution, highly detailed.\" }"
}
JSON
IM
图像
Poster Design nano-banana-2

A retro-inspired studio photoshoot featuring a young woman s...

A retro-inspired studio photoshoot featuring a young woman styled in four different personas, arranged in a horizontal split-panel composition. Each panel has a bold pastel background in contrasting colors (yellow, blue, pink, mint). The same woman appears in each panel wearing vintage 1960s fashion with bright patterns, pink knee-high socks, and expressive makeup. Panel 1 (Office theme): She sits behind a desk with office props like folders, a rotary phone, and stationery, wearing a patterned dress and looking surprised while holding the phone. Panel 2 (Travel theme): She wears a wide-brim hat and colorful outfit, sitting with a vintage suitcase and travel accessories, posing elegantly. Panel 3 (Sports theme): She wears a sporty retro outfit, holding a tennis racket and ball, sitting casually with playful energy. Panel 4 (Home theme): She wears a robe with hair rollers, holding a hand mirror, sitting at a vanity table with beauty items. Each panel is cleanly divided, perfectly symmetrical, with consistent lighting and camera angle. Bright, soft studio lighting, high fashion editorial style, ultra-sharp, vibrant colors, minimal shadows, no text, no logos, no labels, no watermarks. Style: vintage pop art, Wes Anderson symmetry, fashion editorial photography, pastel color blocking, high resolution, 8k, clean composition.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "A retro-inspired studio photoshoot featuring a young woman styled in four different personas, arranged in a horizontal split-panel composition. Each panel has a bold pastel background in contrasting colors (yellow, blue, pink, mint). The same woman appears in each panel wearing vintage 1960s fashion with bright patterns, pink knee-high socks, and expressive makeup. Panel 1 (Office theme): She sits behind a desk with office props like folders, a rotary phone, and stationery, wearing a patterned dress and looking surprised while holding the phone. Panel 2 (Travel theme): She wears a wide-brim hat and colorful outfit, sitting with a vintage suitcase and travel accessories, posing elegantly. Panel 3 (Sports theme): She wears a sporty retro outfit, holding a tennis racket and ball, sitting casually with playful energy. Panel 4 (Home theme): She wears a robe with hair rollers, holding a hand mirror, sitting at a vanity table with beauty items. Each panel is cleanly divided, perfectly symmetrical, with consistent lighting and camera angle. Bright, soft studio lighting, high fashion editorial style, ultra-sharp, vibrant colors, minimal shadows, no text, no logos, no labels, no watermarks. Style: vintage pop art, Wes Anderson symmetry, fashion editorial photography, pastel color blocking, high resolution, 8k, clean composition."
}
JSON
IM
图像
Poster Design nano-banana-2

[product], futuristic high-end ad, transparent glass cube en...

[product], futuristic high-end ad, transparent glass cube enclosure, caustic light patterns on surface, minimal composition, cool studio lighting, subtle fog, sharp reflections, ultra-realistic, macro product photography, 100mm lens look, f/8, 8k, 1:1

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "[product], futuristic high-end ad, transparent glass cube enclosure, caustic light patterns on surface, minimal composition, cool studio lighting, subtle fog, sharp reflections, ultra-realistic, macro product photography, 100mm lens look, f/8, 8k, 1:1"
}
JSON
IM
图像
Poster Design nano-banana-2

{ "style": "high-fashion editorial, minimalist surrealism"...

{ "style": "high-fashion editorial, minimalist surrealism", "subject": "a confident woman leaning casually against an oversized green leather boot sculpture", "pose": "relaxed yet powerful stance, body slightly angled, one arm holding a small handbag", "outfit": { "top": "emerald green fitted sleeveless top", "bottom": "matching green leather pants", "footwear": "knee-high green leather boots", "accessories": "small structured green handbag" }, "composition": { "scale": "dramatic contrast between human figure and oversized object", "framing": "full body shot, centered subject with negative space", "background": "pure white seamless studio backdrop", "floor": "glossy white reflective surface" }, "lighting": { "type": "soft studio lighting", "mood": "clean, premium, editorial", "shadows": "subtle, natural, controlled" }, "color_palette": "monochromatic green tones with neutral white", "camera": { "angle": "eye-level", "lens": "85mm fashion lens", "depth_of_field": "sharp focus on subject, smooth background" }, "vibe": "luxury fashion campaign, modern, confident, surreal elegance", "quality": "ultra-high resolution, crisp details, magazine-ready" }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"style\": \"high-fashion editorial, minimalist surrealism\", \"subject\": \"a confident woman leaning casually against an oversized green leather boot sculpture\", \"pose\": \"relaxed yet powerful stance, body slightly angled, one arm holding a small handbag\", \"outfit\": { \"top\": \"emerald green fitted sleeveless top\", \"bottom\": \"matching green leather pants\", \"footwear\": \"knee-high green leather boots\", \"accessories\": \"small structured green handbag\" }, \"composition\": { \"scale\": \"dramatic contrast between human figure and oversized object\", \"framing\": \"full body shot, centered subject with negative space\", \"background\": \"pure white seamless studio backdrop\", \"floor\": \"glossy white reflective surface\" }, \"lighting\": { \"type\": \"soft studio lighting\", \"mood\": \"clean, premium, editorial\", \"shadows\": \"subtle, natural, controlled\" }, \"color_palette\": \"monochromatic green tones with neutral white\", \"camera\": { \"angle\": \"eye-level\", \"lens\": \"85mm fashion lens\", \"depth_of_field\": \"sharp focus on subject, smooth background\" }, \"vibe\": \"luxury fashion campaign, modern, confident, surreal elegance\", \"quality\": \"ultra-high resolution, crisp details, magazine-ready\" }"
}
JSON
IM
图像
Poster Design nano-banana-2

Hyper-realistic professional automotive commercial ad poster...

Hyper-realistic professional automotive commercial ad poster. [BRAND] [MODEL] in [COLOR] parked at a perfect 3/4 front angle on [SURFACE]. Background: [ENVIRONMENT]. [WEATHER/ATMOSPHERE]. The car hyper-detailed — every panel line sharp, all lights on and glowing, [SIGNATURE DESIGN DETAIL] catching [LIGHT SOURCE], alloy wheels clean and sharp, car reflection visible on [SURFACE] below. [ATMOSPHERE DETAIL — mist / dust / rain / stars]. Typography: top left — [BRAND] logo white. Center — “[MODEL NAME]” in large bold white. Bottom left — “[HEADLINE TAGLINE]” in italic serif white. Below — “[ENGINE · FEATURE · FEATURE]” in 8px tracked caps white. Bottom right — “Starting [PRICE]*” white. Thin horizontal rule separating tagline from specs. Bottom center — “[BRAND WEBSITE]” 7px tracked caps. Left edge vertical — “[MODEL · YEAR]” 7px white rotated 90 degrees. Lighting: [MAIN LIGHT SOURCE], strong specular on car panels, all brand lights illuminated, [MOOD LIGHT — warm amber / cold blue / golden sunrise / storm dramatic]. Mood: [MOOD]. Shot on ARRI Alexa Mini LF, 50mm anamorphic, shallow DOF, HDR, professional automotive ad campaign poster, 4:5 portrait.

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "Hyper-realistic professional automotive commercial ad poster. [BRAND] [MODEL] in [COLOR] parked at a perfect 3/4 front angle on [SURFACE]. Background: [ENVIRONMENT]. [WEATHER/ATMOSPHERE]. The car hyper-detailed — every panel line sharp, all lights on and glowing, [SIGNATURE DESIGN DETAIL] catching [LIGHT SOURCE], alloy wheels clean and sharp, car reflection visible on [SURFACE] below. [ATMOSPHERE DETAIL — mist / dust / rain / stars]. Typography: top left — [BRAND] logo white. Center — “[MODEL NAME]” in large bold white. Bottom left — “[HEADLINE TAGLINE]” in italic serif white. Below — “[ENGINE · FEATURE · FEATURE]” in 8px tracked caps white. Bottom right — “Starting [PRICE]*” white. Thin horizontal rule separating tagline from specs. Bottom center — “[BRAND WEBSITE]” 7px tracked caps. Left edge vertical — “[MODEL · YEAR]” 7px white rotated 90 degrees. Lighting: [MAIN LIGHT SOURCE], strong specular on car panels, all brand lights illuminated, [MOOD LIGHT — warm amber / cold blue / golden sunrise / storm dramatic]. Mood: [MOOD]. Shot on ARRI Alexa Mini LF, 50mm anamorphic, shallow DOF, HDR, professional automotive ad campaign poster, 4:5 portrait."
}
JSON
IM
图像
Poster Design nano-banana-2

5 panel colorful portrait collage, fashion models, monochrom...

5 panel colorful portrait collage, fashion models, monochrome backgrounds (pink, red, green, yellow), vibrant studio lighting, modern editorial style, rounded grid layout, high contrast, minimal shadows

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "5 panel colorful portrait collage, fashion models, monochrome backgrounds (pink, red, green, yellow), vibrant studio lighting, modern editorial style, rounded grid layout, high contrast, minimal shadows"
}
JSON
IM
图像
Poster Design nano-banana-2

{ "prompt": "View from inside a Starbucks strawberry frapp...

{ "prompt": "View from inside a Starbucks strawberry frappuccino cup looking up, fisheye lens extreme distortion, worm's eye perspective, crushed strawberry ice macro foreground with glistening bokeh highlights, one single continuous green straw passing through the entire frame from top to bottom connecting lips to ice, person peering down from above through cup opening with wide-eyed excited expression lips pursed on straw top, whipped cream layer, Starbucks logo visible on cup wall, clear blue sky background through opening, high saturation red strawberry vs green straw complementary colors, bright summer daylight, hyper-realistic commercial photography", "negative_prompt": "two straws, double straw, multiple straws, broken straw, separated straw, disconnected straw, flat lay, normal perspective, dull colors, deformed face, low saturation, ugly, extra limbs, woman, girl, female", "character_reference": { "upload": true, "control_weight": 0.95, "description": "maintain face and identity from reference image, male person, front-facing, slightly downward gaze, wide-eyed excited expression, lips pursed on straw" }, "parameters": { "aspect_ratio": "9:16", "style_strength": 0.9, "composition_reference": "inside-cup fisheye upward shot, face centered in cup opening, single straw runs continuously from person lips down through whipped cream into crushed ice" } }

查看 API 代码
curl -X POST https://runapi.ai/api/v1/nano_banana/text_to_image \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  --data-binary @- <<'JSON'
{
  "model": "nano-banana-2",
  "prompt": "{ \"prompt\": \"View from inside a Starbucks strawberry frappuccino cup looking up, fisheye lens extreme distortion, worm's eye perspective, crushed strawberry ice macro foreground with glistening bokeh highlights, one single continuous green straw passing through the entire frame from top to bottom connecting lips to ice, person peering down from above through cup opening with wide-eyed excited expression lips pursed on straw top, whipped cream layer, Starbucks logo visible on cup wall, clear blue sky background through opening, high saturation red strawberry vs green straw complementary colors, bright summer daylight, hyper-realistic commercial photography\", \"negative_prompt\": \"two straws, double straw, multiple straws, broken straw, separated straw, disconnected straw, flat lay, normal perspective, dull colors, deformed face, low saturation, ugly, extra limbs, woman, girl, female\", \"character_reference\": { \"upload\": true, \"control_weight\": 0.95, \"description\": \"maintain face and identity from reference image, male person, front-facing, slightly downward gaze, wide-eyed excited expression, lips pursed on straw\" }, \"parameters\": { \"aspect_ratio\": \"9:16\", \"style_strength\": 0.9, \"composition_reference\": \"inside-cup fisheye upward shot, face centered in cup opening, single straw runs continuously from person lips down through whipped cream into crushed ice\" } }"
}
JSON
常见问题

使用 nano-banana-2 prompts

%{model} 是什么?

%{model} 是 RunAPI 统一模型目录中的模型。这些 prompts 展示了 agent 和后端服务可以复用的实际输入模式。

如何使用这些 prompts?

安装 RunAPI MCP Server 后,复制任意 prompt 并粘贴到 Claude Code、Codex、Cursor 或 Windsurf。开发者也可以复制 API 示例直接调用。

浏览这些 prompts 要付费吗?

浏览和复制 prompt 示例是免费的。只有当你使用 API key 调用 RunAPI 模型生成内容时,才会产生费用。

这些 prompts 可以用于生产环境吗?

可以。把每个 prompt 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。