模型 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

[PERSON NAME]. Act as a high-end sports graphic designer cr...

[PERSON NAME]. Act as a high-end sports graphic designer creating a conceptual tribute poster. The style is a complex "dual exposure photo-grid composite" with mixed-media textures. CENTRAL STRUCTURE (THE VESSEL): The central focus is a large-scale, high-contrast black and white portrait silhouette of [PERSON NAME]. This main portrait acts as the container. THE GRID FILL & TEXTURES (MIXED MEDIA): The interior of the silhouette is populated by a dense "photo mosaic grid" of action shots from the person's career. CRITICAL TEXTURE INSTRUCTION: Do not just paste flat photos. Apply artistic textures to various grid cells to create a tactile, collage feel. Use effects like: Halftone Dots: Comic-book style raster patterns on some cells. Fabric/Embroidery: Subtle thread or canvas textures suggesting a jersey or patch. Film Grain: Heavy noise on specific high-contrast action shots. COLOR STRATEGY: The base is Monochrome B&W. Use selective color overlays (relevant to the team/flag) ONLY on specific grid cells to create a rhythm. TYPOGRAPHY & BRANDING (STRICT MICRO-SCALING): Top Left (The Name): Write "[PERSON NAME]" strictly using the font Inter Semibold. Kerning: Tight negative kerning (-4%). Size: SMALL and discreet. It must occupy MAXIMUM 20% of the canvas width. Do NOT make it large or loud. Top Right (The Symbol): Place the primary logo (Team/Brand/Flag). Size: VERY SMALL. It must occupy MAXIMUM 10% of the canvas width. COMPOSITION & BACKGROUND: Background: Off-white or light grey with a visible high-quality paper or concrete texture. It should not be flat digital white. Alignment: Center the figure perfectly. Maintain wide negative space around the object.

查看 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": "[PERSON NAME]. Act as a high-end sports graphic designer creating a conceptual tribute poster. The style is a complex \"dual exposure photo-grid composite\" with mixed-media textures. CENTRAL STRUCTURE (THE VESSEL): The central focus is a large-scale, high-contrast black and white portrait silhouette of [PERSON NAME]. This main portrait acts as the container. THE GRID FILL & TEXTURES (MIXED MEDIA): The interior of the silhouette is populated by a dense \"photo mosaic grid\" of action shots from the person's career. CRITICAL TEXTURE INSTRUCTION: Do not just paste flat photos. Apply artistic textures to various grid cells to create a tactile, collage feel. Use effects like: Halftone Dots: Comic-book style raster patterns on some cells. Fabric/Embroidery: Subtle thread or canvas textures suggesting a jersey or patch. Film Grain: Heavy noise on specific high-contrast action shots. COLOR STRATEGY: The base is Monochrome B&W. Use selective color overlays (relevant to the team/flag) ONLY on specific grid cells to create a rhythm. TYPOGRAPHY & BRANDING (STRICT MICRO-SCALING): Top Left (The Name): Write \"[PERSON NAME]\" strictly using the font Inter Semibold. Kerning: Tight negative kerning (-4%). Size: SMALL and discreet. It must occupy MAXIMUM 20% of the canvas width. Do NOT make it large or loud. Top Right (The Symbol): Place the primary logo (Team/Brand/Flag). Size: VERY SMALL. It must occupy MAXIMUM 10% of the canvas width. COMPOSITION & BACKGROUND: Background: Off-white or light grey with a visible high-quality paper or concrete texture. It should not be flat digital white. Alignment: Center the figure perfectly. Maintain wide negative space around the object."
}
JSON
IM
图像
Poster Design nano-banana-2

{ "project_settings": { "task_type": "九宫格新年祝福肖像(男生版)",...

{ "project_settings": { "task_type": "九宫格新年祝福肖像(男生版)", "aspect_ratio": "1:1", "grid_layout": "3x3", "batch_size": 1 }, "overall_style": { "整体风格": "极简新年祝福风", "视觉基调": "干净、温和、克制的节日感", "背景": "纯色白墙面,无装饰", "光线": "自然柔光,均匀无强阴影", "色彩重点": "中国红(服装 + 文字)" }, "subject_base": { "人物一致性": "九宫格内为同一位人物", "人物类型": "亚洲男性", "性别气质": "干净、阳光、自然,不油腻", "发型": "黑色短发,自然蓬松,简洁利落", "服装": "红色针织毛衣或卫衣,简洁无图案", "妆容": "无明显妆感,真实自然肤质", "表情气质": "开心,克制的微笑,不夸张" }, "pose_variations": { "grid_1": "食指竖于嘴前,轻松安静手势", "grid_2": "单手比 V 手势靠近脸部", "grid_3": "单手做 OK 或三指手势", "grid_4": "双手举起做轻松俏皮手势(不过度卖萌)", "grid_5": "单手张开遮住半边脸", "grid_6": "单手做电话手势靠近脸侧", "grid_7": "单手轻点脸颊或下巴", "grid_8": "单手托下巴,轻微思考姿势", "grid_9": "双手指向脸部或克制比心变体" }, "text_overlays": { "字体风格": "传统中文新年书法字体", "文字颜色": "中国红", "年份颜色": "深蓝色", "文字位置": "每一格顶部居中", "文字结构": "四字祝福语 + 年份" }, "text_content": [ { "position": "grid_1", "text": "一帆风顺", "year": "2026" }, { "position": "grid_2", "text": "双喜临门", "year": "2026" }, { "position": "grid_3", "text": "三阳开泰", "year": "2026" }, { "position": "grid_4", "text": "四季发财", "year": "2026" }, { "position": "grid_5", "text": "五福临门", "year": "2026" }, { "position": "grid_6", "text": "六六大顺", "year": "2026" }, { "position": "grid_7", "text": "七星高照", "year": "2026" }, { "position": "grid_8", "text": "八方来财", "year": "2026" }, { "position": "grid_9", "text": "九九同心", "year": "2026" } ], "constraints": { "禁止项": [ "不改变人物身份", "不夸张表情", "不女性化姿态", "不使用复杂背景", "不添加节日道具", "不风格化面部" ], "一致性要求": [ "人物脸型五官保持完全一致", "服装颜色与材质一致", "拍摄角度与距离基本一致" ] }, "use_cases": [ "男生新年纪念照", "个人春节祝福九宫格", "社交平台头像矩阵", "品牌新年男生模板" ] }

查看 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_settings\": { \"task_type\": \"九宫格新年祝福肖像(男生版)\", \"aspect_ratio\": \"1:1\", \"grid_layout\": \"3x3\", \"batch_size\": 1 }, \"overall_style\": { \"整体风格\": \"极简新年祝福风\", \"视觉基调\": \"干净、温和、克制的节日感\", \"背景\": \"纯色白墙面,无装饰\", \"光线\": \"自然柔光,均匀无强阴影\", \"色彩重点\": \"中国红(服装 + 文字)\" }, \"subject_base\": { \"人物一致性\": \"九宫格内为同一位人物\", \"人物类型\": \"亚洲男性\", \"性别气质\": \"干净、阳光、自然,不油腻\", \"发型\": \"黑色短发,自然蓬松,简洁利落\", \"服装\": \"红色针织毛衣或卫衣,简洁无图案\", \"妆容\": \"无明显妆感,真实自然肤质\", \"表情气质\": \"开心,克制的微笑,不夸张\" }, \"pose_variations\": { \"grid_1\": \"食指竖于嘴前,轻松安静手势\", \"grid_2\": \"单手比 V 手势靠近脸部\", \"grid_3\": \"单手做 OK 或三指手势\", \"grid_4\": \"双手举起做轻松俏皮手势(不过度卖萌)\", \"grid_5\": \"单手张开遮住半边脸\", \"grid_6\": \"单手做电话手势靠近脸侧\", \"grid_7\": \"单手轻点脸颊或下巴\", \"grid_8\": \"单手托下巴,轻微思考姿势\", \"grid_9\": \"双手指向脸部或克制比心变体\" }, \"text_overlays\": { \"字体风格\": \"传统中文新年书法字体\", \"文字颜色\": \"中国红\", \"年份颜色\": \"深蓝色\", \"文字位置\": \"每一格顶部居中\", \"文字结构\": \"四字祝福语 + 年份\" }, \"text_content\": [ { \"position\": \"grid_1\", \"text\": \"一帆风顺\", \"year\": \"2026\" }, { \"position\": \"grid_2\", \"text\": \"双喜临门\", \"year\": \"2026\" }, { \"position\": \"grid_3\", \"text\": \"三阳开泰\", \"year\": \"2026\" }, { \"position\": \"grid_4\", \"text\": \"四季发财\", \"year\": \"2026\" }, { \"position\": \"grid_5\", \"text\": \"五福临门\", \"year\": \"2026\" }, { \"position\": \"grid_6\", \"text\": \"六六大顺\", \"year\": \"2026\" }, { \"position\": \"grid_7\", \"text\": \"七星高照\", \"year\": \"2026\" }, { \"position\": \"grid_8\", \"text\": \"八方来财\", \"year\": \"2026\" }, { \"position\": \"grid_9\", \"text\": \"九九同心\", \"year\": \"2026\" } ], \"constraints\": { \"禁止项\": [ \"不改变人物身份\", \"不夸张表情\", \"不女性化姿态\", \"不使用复杂背景\", \"不添加节日道具\", \"不风格化面部\" ], \"一致性要求\": [ \"人物脸型五官保持完全一致\", \"服装颜色与材质一致\", \"拍摄角度与距离基本一致\" ] }, \"use_cases\": [ \"男生新年纪念照\", \"个人春节祝福九宫格\", \"社交平台头像矩阵\", \"品牌新年男生模板\" ] }"
}
JSON
IM
图像
Poster Design nano-banana-2

[BRAND NAME]. Act as a Social Media Art Director and Digital...

[BRAND NAME]. Act as a Social Media Art Director and Digital Collage Artist specializing in bold, youth-oriented brand content for Instagram and digital campaigns. PHASE 1: CONCEPTUAL FRAMEWORK Create a dynamic digital collage that merges fashion photography with graphic design chaos. This is controlled rebellion – a composition that feels spontaneous and energetic while maintaining brand coherence. The aesthetic is anti-polished: torn edges, layered textures, hand-drawn elements, and bold color blocking that screams confidence and movement. PHASE 2: MODEL & PHOTOGRAPHY - Subject: One model (diverse casting, age 18-30) in a dynamic, confident pose - Pose Energy: 80% attitude, 20% natural – sitting, jumping, mid-motion, or power stance (avoid static standing) - Outfit: Street style/athleisure that aligns with [BRAND NAME] aesthetic – casual but styled - Hero Product: Feature 1 signature [BRAND NAME] product prominently (sneakers, bag, apparel) – this is the visual anchor - Photography Style: Editorial fashion cutout – model extracted from background with clean edges - Camera Angle: Slight low angle to empower subject (hero perspective) - Crop: Full body or 3/4 body showing hero product clearly - Background Removal: Model cut out cleanly for layering over collage elements PHASE 3: COLOR BLOCKING FOUNDATION - Primary Color Blob: Large organic shape (40-60% of composition) in bold, saturated brand color behind/around model - Shape Style: Irregular, hand-painted aesthetic – think Photoshop brush strokes or torn paper texture (NOT perfect geometric shapes) - Color Selection (Autonomous): Choose 1 hero color from [BRAND NAME] palette: - Texture: Visible brush strokes, grain, or subtle noise (15-25% opacity) – avoid flat digital fills - Placement: Blob positioned to frame model without obscuring key product details PHASE 4: GRAPHIC ELEMENTS LAYER Add 3-5 abstract graphic elements scattered across composition: - Element Types: - Color Palette: Use 2-3 accent colors total (main blob color + 1-2 contrasting tones from brand palette) - Placement: Asymmetric scatter – top-left and bottom-right zones primarily (avoid center crowding) - Scale: Mix small (5% of canvas) and medium (15% of canvas) elements – nothing overpowering - Aesthetic: Analog/handmade feel – imperfect circles, rough edges, visible texture PHASE 5: TYPOGRAPHY INTEGRATION - Brand Logo: Clean [BRAND NAME] logo placed in upper-left or upper-right quadrant (10-15% of width) - Slogan/Tagline: If [BRAND NAME] has an iconic slogan, integrate it using: - Supporting Copy: Optional 1-line descriptor (e.g., "A MOMENT OF YOUR STYLE") in smaller uppercase sans-serif - Type Treatment: Mix of aligned and slightly rotated text (2-5° angles) for dynamic energy - Hierarchy: Logo largest → Slogan medium → Copy smallest PHASE 6: TEXTURE & BACKGROUND - Base Layer: Off-white or light gray textured background (NOT pure white) - Texture Options (Autonomous selection): - Color: RGB 245-250 (near-white with warmth) – maintains brightness while adding depth - Treatment: Texture should be felt, not seen – enhances tactility without competing with foreground PHASE 7: COMPOSITION RULES - Layout: Asymmetric balance – model off-center, graphic elements counter-balance - Breathing Room: 15-20% negative space (textured background visible) to prevent claustrophobia - Layering Order: Background texture → Color blob → Graphic elements → Model (cutout) → Typography top layer - Focal Point: Model + hero product = primary focus (60% visual weight), graphics support (40%) - Movement: Diagonal lines and angled elements create directional flow (top-left to bottom-right or vice versa) PHASE 8: BRAND INTELLIGENCE (AUTONOMOUS) Autonomously adapt composition based on [BRAND NAME] personality: - Streetwear/Sportswear (Nike, Adidas, Supreme): - Luxury Streetwear (Balenciaga, Off-White, Gucci): - Beauty/Lifestyle (Glossier, Fenty, Skims): - Tech/Modern (Apple, Tesla, Beats): PHASE 9: SOCIAL MEDIA FOOTER (OPTIONAL) - Bottom Strip: Clean white or light gray bar at bottom 8-10% of frame - Content: Social media handles (Instagram, Facebook, Twitter) in small sans-serif - Layout: Three-column grid with platform icons or text handles - Aesthetic: Minimal and professional – contrast with chaotic collage above TECHNICAL SPECS: - Aspect Ratio: 4:5 (Instagram feed) or 1:1 (square social post) - Resolution: 2400x3000px minimum (high-quality for zoom and detail) - Color Mode: sRGB, vibrant saturation (Instagram-optimized) - File Aesthetic: Digital collage that mimics analog craft (Photoshop + hand-drawn hybrid) - Model Photography: 85mm lens, f/2.8, shallow depth of field on original shoot (before cutout) - Style Reference: Nike social campaigns, Spotify wrapped graphics, Gen Z Instagram aesthetics, Hypebeast x streetwear collabs - Mood: Confident, energetic, youthful, authentic chaos, anti-corporate polish

查看 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 Social Media Art Director and Digital Collage Artist specializing in bold, youth-oriented brand content for Instagram and digital campaigns. PHASE 1: CONCEPTUAL FRAMEWORK Create a dynamic digital collage that merges fashion photography with graphic design chaos. This is controlled rebellion – a composition that feels spontaneous and energetic while maintaining brand coherence. The aesthetic is anti-polished: torn edges, layered textures, hand-drawn elements, and bold color blocking that screams confidence and movement. PHASE 2: MODEL & PHOTOGRAPHY - Subject: One model (diverse casting, age 18-30) in a dynamic, confident pose - Pose Energy: 80% attitude, 20% natural – sitting, jumping, mid-motion, or power stance (avoid static standing) - Outfit: Street style/athleisure that aligns with [BRAND NAME] aesthetic – casual but styled - Hero Product: Feature 1 signature [BRAND NAME] product prominently (sneakers, bag, apparel) – this is the visual anchor - Photography Style: Editorial fashion cutout – model extracted from background with clean edges - Camera Angle: Slight low angle to empower subject (hero perspective) - Crop: Full body or 3/4 body showing hero product clearly - Background Removal: Model cut out cleanly for layering over collage elements PHASE 3: COLOR BLOCKING FOUNDATION - Primary Color Blob: Large organic shape (40-60% of composition) in bold, saturated brand color behind/around model - Shape Style: Irregular, hand-painted aesthetic – think Photoshop brush strokes or torn paper texture (NOT perfect geometric shapes) - Color Selection (Autonomous): Choose 1 hero color from [BRAND NAME] palette: - Texture: Visible brush strokes, grain, or subtle noise (15-25% opacity) – avoid flat digital fills - Placement: Blob positioned to frame model without obscuring key product details PHASE 4: GRAPHIC ELEMENTS LAYER Add 3-5 abstract graphic elements scattered across composition: - Element Types: - Color Palette: Use 2-3 accent colors total (main blob color + 1-2 contrasting tones from brand palette) - Placement: Asymmetric scatter – top-left and bottom-right zones primarily (avoid center crowding) - Scale: Mix small (5% of canvas) and medium (15% of canvas) elements – nothing overpowering - Aesthetic: Analog/handmade feel – imperfect circles, rough edges, visible texture PHASE 5: TYPOGRAPHY INTEGRATION - Brand Logo: Clean [BRAND NAME] logo placed in upper-left or upper-right quadrant (10-15% of width) - Slogan/Tagline: If [BRAND NAME] has an iconic slogan, integrate it using: - Supporting Copy: Optional 1-line descriptor (e.g., \"A MOMENT OF YOUR STYLE\") in smaller uppercase sans-serif - Type Treatment: Mix of aligned and slightly rotated text (2-5° angles) for dynamic energy - Hierarchy: Logo largest → Slogan medium → Copy smallest PHASE 6: TEXTURE & BACKGROUND - Base Layer: Off-white or light gray textured background (NOT pure white) - Texture Options (Autonomous selection): - Color: RGB 245-250 (near-white with warmth) – maintains brightness while adding depth - Treatment: Texture should be felt, not seen – enhances tactility without competing with foreground PHASE 7: COMPOSITION RULES - Layout: Asymmetric balance – model off-center, graphic elements counter-balance - Breathing Room: 15-20% negative space (textured background visible) to prevent claustrophobia - Layering Order: Background texture → Color blob → Graphic elements → Model (cutout) → Typography top layer - Focal Point: Model + hero product = primary focus (60% visual weight), graphics support (40%) - Movement: Diagonal lines and angled elements create directional flow (top-left to bottom-right or vice versa) PHASE 8: BRAND INTELLIGENCE (AUTONOMOUS) Autonomously adapt composition based on [BRAND NAME] personality: - Streetwear/Sportswear (Nike, Adidas, Supreme): - Luxury Streetwear (Balenciaga, Off-White, Gucci): - Beauty/Lifestyle (Glossier, Fenty, Skims): - Tech/Modern (Apple, Tesla, Beats): PHASE 9: SOCIAL MEDIA FOOTER (OPTIONAL) - Bottom Strip: Clean white or light gray bar at bottom 8-10% of frame - Content: Social media handles (Instagram, Facebook, Twitter) in small sans-serif - Layout: Three-column grid with platform icons or text handles - Aesthetic: Minimal and professional – contrast with chaotic collage above TECHNICAL SPECS: - Aspect Ratio: 4:5 (Instagram feed) or 1:1 (square social post) - Resolution: 2400x3000px minimum (high-quality for zoom and detail) - Color Mode: sRGB, vibrant saturation (Instagram-optimized) - File Aesthetic: Digital collage that mimics analog craft (Photoshop + hand-drawn hybrid) - Model Photography: 85mm lens, f/2.8, shallow depth of field on original shoot (before cutout) - Style Reference: Nike social campaigns, Spotify wrapped graphics, Gen Z Instagram aesthetics, Hypebeast x streetwear collabs - Mood: Confident, energetic, youthful, authentic chaos, anti-corporate polish"
}
JSON
IM
图像
Poster Design nano-banana-2

A refined fashion editorial image with a 3:4 aspect ratio, s...

A refined fashion editorial image with a 3:4 aspect ratio, split into two clear sections. Right side: A fashionable, confident, sensual woman standing and walking casually in a modern architectural space with red luxurious walls and soft natural light. She wears a top with a deep V neckline, a 90-60-90 figure, tucked into a high-waisted blue tailored short skirt, On her feet are sleek black stiletto heels, elegant and minimal. She carries a small structured red handbag in one hand and she is wearing a luxurious diamond necklace with a blue diamond on it. Her hair is open emphasizing her facial structure. She wears subtle statement earrings. The look is refined, modern, and effortlessly chic. Natural daylight, soft shadows, realistic skin texture. Casual fashion photography style with an editorial, high-end feel. alive color palette, warm tones, shallow depth of field, cinematic realism. Style & Mood: Modern elegance, quiet luxury, confident, minimal, editorial casual. Photography Details: Eye-level angle, candid stance, 35mm lens, natural lighting, high detail, photorealistic. Left side: A clean, minimalist product breakdown layout on a neutral background. The individual fashion items worn by the woman are displayed separately, neatly arranged with subtle shadows. Each item includes a small, elegant price label in refined sans-serif typography: – white deep V-neck knit top — $180 – blue high-waisted tailored mini skirt — $220 – Black pointed-toe stiletto heels — $350 – Small structured red handbag — $480 – a diamond necklace with a big blue diamond — $160000 The left side feels like a luxury fashion catalog or e-commerce lookbook, with a red carpet, luxurious walls, art pieces on wall Overall Style & Mood: Quiet luxury, modern elegance, editorial fashion, high-end retail aesthetic. Lighting & Quality: Soft natural light, studio-clean clarity on product side, photorealistic, ultra-high resolution, professional fashion photography. Negative Prompt: Cluttered layout, oversized text, flashy logos, mannequins, people on left side, harsh lighting, low resolution, cartoon style.

查看 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 refined fashion editorial image with a 3:4 aspect ratio, split into two clear sections. Right side: A fashionable, confident, sensual woman standing and walking casually in a modern architectural space with red luxurious walls and soft natural light. She wears a top with a deep V neckline, a 90-60-90 figure, tucked into a high-waisted blue tailored short skirt, On her feet are sleek black stiletto heels, elegant and minimal. She carries a small structured red handbag in one hand and she is wearing a luxurious diamond necklace with a blue diamond on it. Her hair is open emphasizing her facial structure. She wears subtle statement earrings. The look is refined, modern, and effortlessly chic. Natural daylight, soft shadows, realistic skin texture. Casual fashion photography style with an editorial, high-end feel. alive color palette, warm tones, shallow depth of field, cinematic realism. Style & Mood: Modern elegance, quiet luxury, confident, minimal, editorial casual. Photography Details: Eye-level angle, candid stance, 35mm lens, natural lighting, high detail, photorealistic. Left side: A clean, minimalist product breakdown layout on a neutral background. The individual fashion items worn by the woman are displayed separately, neatly arranged with subtle shadows. Each item includes a small, elegant price label in refined sans-serif typography: – white deep V-neck knit top — $180 – blue high-waisted tailored mini skirt — $220 – Black pointed-toe stiletto heels — $350 – Small structured red handbag — $480 – a diamond necklace with a big blue diamond — $160000 The left side feels like a luxury fashion catalog or e-commerce lookbook, with a red carpet, luxurious walls, art pieces on wall Overall Style & Mood: Quiet luxury, modern elegance, editorial fashion, high-end retail aesthetic. Lighting & Quality: Soft natural light, studio-clean clarity on product side, photorealistic, ultra-high resolution, professional fashion photography. Negative Prompt: Cluttered layout, oversized text, flashy logos, mannequins, people on left side, harsh lighting, low resolution, cartoon style."
}
JSON
IM
图像
Poster Design nano-banana-2

A minimalist cinematic colored poster featuring a [Character...

A minimalist cinematic colored poster featuring a [Character Name]’s portrait from shoulders to the top of the head. The face is reconstructed using a small number of large, square-cut paper fragments arranged in a simple grid [around 4x5 or 5x6 pieces]. Each paper fragment contains a disjointed part of the face which together reconstruct the portrait. The internal paper fragments constituting the face are not perfectly flat; many have slightly curled edges and lifted corners, casting tiny, realistic shadows that give them a three-dimensional, tacked-down appearance. 4 of these squares have subtle black handwritten [text1, text2, text3, text4] directly on the skin/image. Scattered irregularly around the outer perimeter of this central grid in various randomly placed positions (not confined to the corners), several [Sticky Note Color] sticky notes are attached to the [Color] wall, containing handwritten [External Text Content, e.g., iconic quotes]. The overall layout is slightly irregular with visible gaps between the pieces showing [Color] concrete wall background. Realistic paper texture throughout, high-end studio lighting emphasizing the lifted edges, sharp focus on ink and paper grain.

查看 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 minimalist cinematic colored poster featuring a [Character Name]’s portrait from shoulders to the top of the head. The face is reconstructed using a small number of large, square-cut paper fragments arranged in a simple grid [around 4x5 or 5x6 pieces]. Each paper fragment contains a disjointed part of the face which together reconstruct the portrait. The internal paper fragments constituting the face are not perfectly flat; many have slightly curled edges and lifted corners, casting tiny, realistic shadows that give them a three-dimensional, tacked-down appearance. 4 of these squares have subtle black handwritten [text1, text2, text3, text4] directly on the skin/image. Scattered irregularly around the outer perimeter of this central grid in various randomly placed positions (not confined to the corners), several [Sticky Note Color] sticky notes are attached to the [Color] wall, containing handwritten [External Text Content, e.g., iconic quotes]. The overall layout is slightly irregular with visible gaps between the pieces showing [Color] concrete wall background. Realistic paper texture throughout, high-end studio lighting emphasizing the lifted edges, sharp focus on ink and paper grain."
}
JSON
IM
图像
Poster Design nano-banana-2

A photorealistic fashion upper body shot of [Character Descr...

A photorealistic fashion upper body shot of [Character Description and expression] wearing [Detailed Outfit Description]. The subject is framed inside a central white Instagram-style post border. Composition & Spacing: The white frame is perfectly centered in the middle of the image, leaving balanced empty [Soft Background Color matching the outfit] space above and below the frame to match the theme. Frame Details: The top, left, and right white borders are very thin. The bottom white section is thicker to include UI elements. The bottom section features a red heart icon, comment bubble, share icon, and bookmark icon. Text Details: Clearly visible text on the bottom panel: "[Number] likes", username "[Username]", caption "[Caption text]... more", and below that, "View all comments". 3D Pop-Out Effect & Hand Pose: [CHOOSE ONE OF THE FOLLOWING ACTIONS OR DESCRIBE YOUR OWN ACTION:] 1. (Grip): head and arms are physically popping out OVER the top and side thin borders. hands are realistically gripping the outer edges of the thin side borders, appearing to hold the frame firmly. 2. (Kiss): Her body is leaning forward towards the camera, creating a strong sense of depth. Her head remains securely framed WITHIN the top thin white border. Only her right hand, raised near her mouth in a blowing-kiss gesture, physically extends forward and breaks OUT of the thin side frame boundary. Her left hand realistically grips the side edge. 3. (Resting): She is looking directly at the camera with a gentle smile. Her head and shoulders physically pop out OVER the top thin white border. Crucially, her hands are realistically resting comfortably on top of the thicker bottom white UI panel, appearing to lean casually on the frame edge. 4. (Dynamic Frame): Her upper body and head remain secure WITHIN the boundaries of the white frame. However, both of her arms are fully extended outward dynamically, breaking past the thin borders up to her elbows, reaching straight toward the camera lens. She forms a distinct “L” shape with both hands, as if framing a scene. Due to perspective, her hands are positioned significantly closer to the camera than her face, showing strong spatial depth. Subject Dimensionality & Texture: The subject must look like a solid, three-dimensional figure, not flat. Emphasize the detailed texture of the [Specific Fabric Name from outfit description], the contours of the face, and realistic hair details. She should have distinct depth separating her from the flat [Background Color] background. Lighting & Shadows: Professional studio lighting creating soft, realistic drop shadows cast by the physical frame and, crucially, by the [popping-out elements, e.g., hands/head/arms] onto the solid flat [Background Color] background, enhancing the dramatic depth and illusion. High definition, commercial photography.

查看 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 photorealistic fashion upper body shot of [Character Description and expression] wearing [Detailed Outfit Description]. The subject is framed inside a central white Instagram-style post border. Composition & Spacing: The white frame is perfectly centered in the middle of the image, leaving balanced empty [Soft Background Color matching the outfit] space above and below the frame to match the theme. Frame Details: The top, left, and right white borders are very thin. The bottom white section is thicker to include UI elements. The bottom section features a red heart icon, comment bubble, share icon, and bookmark icon. Text Details: Clearly visible text on the bottom panel: \"[Number] likes\", username \"[Username]\", caption \"[Caption text]... more\", and below that, \"View all comments\". 3D Pop-Out Effect & Hand Pose: [CHOOSE ONE OF THE FOLLOWING ACTIONS OR DESCRIBE YOUR OWN ACTION:] 1. (Grip): head and arms are physically popping out OVER the top and side thin borders. hands are realistically gripping the outer edges of the thin side borders, appearing to hold the frame firmly. 2. (Kiss): Her body is leaning forward towards the camera, creating a strong sense of depth. Her head remains securely framed WITHIN the top thin white border. Only her right hand, raised near her mouth in a blowing-kiss gesture, physically extends forward and breaks OUT of the thin side frame boundary. Her left hand realistically grips the side edge. 3. (Resting): She is looking directly at the camera with a gentle smile. Her head and shoulders physically pop out OVER the top thin white border. Crucially, her hands are realistically resting comfortably on top of the thicker bottom white UI panel, appearing to lean casually on the frame edge. 4. (Dynamic Frame): Her upper body and head remain secure WITHIN the boundaries of the white frame. However, both of her arms are fully extended outward dynamically, breaking past the thin borders up to her elbows, reaching straight toward the camera lens. She forms a distinct “L” shape with both hands, as if framing a scene. Due to perspective, her hands are positioned significantly closer to the camera than her face, showing strong spatial depth. Subject Dimensionality & Texture: The subject must look like a solid, three-dimensional figure, not flat. Emphasize the detailed texture of the [Specific Fabric Name from outfit description], the contours of the face, and realistic hair details. She should have distinct depth separating her from the flat [Background Color] background. Lighting & Shadows: Professional studio lighting creating soft, realistic drop shadows cast by the physical frame and, crucially, by the [popping-out elements, e.g., hands/head/arms] onto the solid flat [Background Color] background, enhancing the dramatic depth and illusion. High definition, commercial photography."
}
JSON
IM
图像
Poster Design nano-banana-2

A professional high-end graphic design advertisement composi...

A professional high-end graphic design advertisement composition on a pure solid white canvas. Centered is a perfectly symmetrical, large solid rounded square (not a hollow frame). The entire interior of this square is filled with a smooth, vibrant color gradient fading from [Top-Left Color/Hex] to [Bottom-Right Color/Hex]. A [Description of Character] is positioned such that the bottom of their torso is perfectly flush and aligned with the very bottom edge of the square, leaving no thick colored border visible beneath them. Crucially, the person and their clothing maintain natural, realistic colors and textures, illuminated by professional studio lighting that is independent of the background gradient (preventing any color cast on their skin or clothes). They are firmly and realistically gripping [Product Description]. Crucially, the top of their head and hair break the top boundary of the square, partially overlapping the white background. Their hands and the [Product Name] also break the side boundaries for a powerful 3D breakout effect, extending onto the white canvas. Typography Layout: At the top, in the white space distinctly above the square with a clear gap, is the [Font Style] brand text '[Brand Name]' in [Top Text Color]. In the bottom-right corner, layered directly on top of the gradient inside the square, is a block of small, thin, clean [Bottom Text Color] descriptive text: '[Slogan/Tagline]'. The lighting is [Lighting Type: e.g., Sharp/Soft], crisp, and commercial, emphasizing the textures of both the subject and the product."

查看 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 high-end graphic design advertisement composition on a pure solid white canvas. Centered is a perfectly symmetrical, large solid rounded square (not a hollow frame). The entire interior of this square is filled with a smooth, vibrant color gradient fading from [Top-Left Color/Hex] to [Bottom-Right Color/Hex]. A [Description of Character] is positioned such that the bottom of their torso is perfectly flush and aligned with the very bottom edge of the square, leaving no thick colored border visible beneath them. Crucially, the person and their clothing maintain natural, realistic colors and textures, illuminated by professional studio lighting that is independent of the background gradient (preventing any color cast on their skin or clothes). They are firmly and realistically gripping [Product Description]. Crucially, the top of their head and hair break the top boundary of the square, partially overlapping the white background. Their hands and the [Product Name] also break the side boundaries for a powerful 3D breakout effect, extending onto the white canvas. Typography Layout: At the top, in the white space distinctly above the square with a clear gap, is the [Font Style] brand text '[Brand Name]' in [Top Text Color]. In the bottom-right corner, layered directly on top of the gradient inside the square, is a block of small, thin, clean [Bottom Text Color] descriptive text: '[Slogan/Tagline]'. The lighting is [Lighting Type: e.g., Sharp/Soft], crisp, and commercial, emphasizing the textures of both the subject and the product.\""
}
JSON
IM
图像
Poster Design nano-banana-2

Graphic design smart prompt Generate ad posters in Nano Ban...

Graphic design smart prompt Generate ad posters in Nano Banana This prompt generates: • POV low-angle photo (pointing at viewer) • Oversized text + brand tagline • Serial numbers, copyright lines, technical callouts • Brand-appropriate color blocking and texture Use case: • social media posting, • influencer collab visuals, • pitch decks. Prompt 👇

查看 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": "Graphic design smart prompt Generate ad posters in Nano Banana This prompt generates: • POV low-angle photo (pointing at viewer) • Oversized text + brand tagline • Serial numbers, copyright lines, technical callouts • Brand-appropriate color blocking and texture Use case: • social media posting, • influencer collab visuals, • pitch decks. Prompt 👇"
}
JSON
IM
图像
Poster Design nano-banana-2

9:16竖版高端极简时尚产品海报。柔和摄影棚自然日光,温暖米白渐变背景(奶油色、燕麦色),画面极致干净。精致亚洲女性模特...

9:16竖版高端极简时尚产品海报。柔和摄影棚自然日光,温暖米白渐变背景(奶油色、燕麦色),画面极致干净。精致亚洲女性模特(25-30岁),自然裸妆,肤感干净,长发自然垂落或低马尾,姿态放松克制,全身或三分之二身构图,手自然垂放或轻触腰侧,强调衣身线条。服装必须严格匹配上传的产品参考图:高品质打底衫,奶油白/燕麦色/浅驼色/雾灰色,高支棉或莫代尔微弹针织面料,触感柔软,修身但不紧绷,圆领或小高领,长袖,设计极简

查看 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": "9:16竖版高端极简时尚产品海报。柔和摄影棚自然日光,温暖米白渐变背景(奶油色、燕麦色),画面极致干净。精致亚洲女性模特(25-30岁),自然裸妆,肤感干净,长发自然垂落或低马尾,姿态放松克制,全身或三分之二身构图,手自然垂放或轻触腰侧,强调衣身线条。服装必须严格匹配上传的产品参考图:高品质打底衫,奶油白/燕麦色/浅驼色/雾灰色,高支棉或莫代尔微弹针织面料,触感柔软,修身但不紧绷,圆领或小高领,长袖,设计极简"
}
JSON
IM
图像
Poster Design nano-banana-2

Ultra-wide-angle hyper-realistic shooting in top-down mode....

Ultra-wide-angle hyper-realistic shooting in top-down mode. A group of 4 real people sitting at a square dining table. The camera is pushed far back, creating a significant negative space (empty floor area) around the people and the table, which provides a clear, minimalistic composition. Scene [ATMOSPHERE AND CLOTHING]: Four people are dressed in [STYLE OF CLOTHING]. Their interaction is specific: [DESCRIBE EACH PERSON'S ACTIONS]. The table is a custom-made physical prop, designed as an Instagram post: it has a solid white stripe ONLY along the top and bottom edges (no white frames on the left or right). - The upper white stripe shows a drawn profile photo with [LOGO DESCRIPTION], the username "[USERNAME]", followed by a small blue icon with a confirmed check mark, and "..." on the right. - Red hearts, comment and share icons are painted on the bottom white stripe on the left, and a Bookmarks icon on the right. The center of the table is filled in [THE EXACT COLOR OF THE CENTER and the hexadecimal CODE]. The table shows [FOOD ITEMS/ITEM DESCRIPTIONS]. important: ALL food, beverages, objects, and hands that interact with them must be located strictly within this central area, colored in [COLOR]. NOTHING should go beyond the white stripes or beyond the table. The background of the floor is made in [THE COLOR OF THE FLOOR] to create a visual separation. Professional studio lighting with clear shadows. 8k, clear 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": "Ultra-wide-angle hyper-realistic shooting in top-down mode. A group of 4 real people sitting at a square dining table. The camera is pushed far back, creating a significant negative space (empty floor area) around the people and the table, which provides a clear, minimalistic composition. Scene [ATMOSPHERE AND CLOTHING]: Four people are dressed in [STYLE OF CLOTHING]. Their interaction is specific: [DESCRIBE EACH PERSON'S ACTIONS]. The table is a custom-made physical prop, designed as an Instagram post: it has a solid white stripe ONLY along the top and bottom edges (no white frames on the left or right). - The upper white stripe shows a drawn profile photo with [LOGO DESCRIPTION], the username \"[USERNAME]\", followed by a small blue icon with a confirmed check mark, and \"...\" on the right. - Red hearts, comment and share icons are painted on the bottom white stripe on the left, and a Bookmarks icon on the right. The center of the table is filled in [THE EXACT COLOR OF THE CENTER and the hexadecimal CODE]. The table shows [FOOD ITEMS/ITEM DESCRIPTIONS]. important: ALL food, beverages, objects, and hands that interact with them must be located strictly within this central area, colored in [COLOR]. NOTHING should go beyond the white stripes or beyond the table. The background of the floor is made in [THE COLOR OF THE FLOOR] to create a visual separation. Professional studio lighting with clear shadows. 8k, clear focus."
}
JSON
IM
图像
Poster Design nano-banana-2

[person], [pose], oversized product in the attached image as...

[person], [pose], oversized product in the attached image as the main hero prop, playful fun energy, fashion editorial styling, clean minimal background, high key studio lighting, crisp soft shadow, ultra realistic commercial photography, wide angle low perspective, sharp focus, 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": "[person], [pose], oversized product in the attached image as the main hero prop, playful fun energy, fashion editorial styling, clean minimal background, high key studio lighting, crisp soft shadow, ultra realistic commercial photography, wide angle low perspective, sharp focus, 8k, 1:1"
}
JSON
IM
图像
Poster Design nano-banana-2

A photorealistic, highly detailed commercial product photogr...

A photorealistic, highly detailed commercial product photograph of a standard aluminum [Type of Soda Can] centered against a minimal, textured [Background Color] paper background, with subtle fibers visible. A single, continuous horizontal paper-tear strip runs across the entire width of the frame, seamless from the far-right edge to the far-left edge. The torn channel cuts through the metal body of the can and continues across the background on both sides with a barely perceptible and minimal diagonal slope towards the upper-left. The tear channel is significantly broader, revealing a dense, glistening, and vibrant layer of [Description of Fruit Segments/Sacs/Berries] tightly packed inside. Near the extreme far-left end of this tear, the paper is neatly rolled into a tight, realistic coil that occupies almost the entire left margin. The can features a newly designed, minimalist branding: the upper portion has a stylized, abstract line-art illustration of [Fruit Branch/Plant] in a contrasting [Ink Color], set against a subtle matte geometric [Pattern Type] pattern on the can surface. Below this, the brand name "[Brand Name]" is printed in an elegant, modern dark typography, with smaller technical text "330ml - NATURAL EXTRACT" and a small "Recyclable" logo. A small, detailed graphic of the fruit is located below the torn path. The lighting is soft and cinematic, casting delicate drop shadows beneath the torn paper edges and the large left coil. 8k resolution, macro details on fibrous paper and glossy fruit texture.

查看 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 photorealistic, highly detailed commercial product photograph of a standard aluminum [Type of Soda Can] centered against a minimal, textured [Background Color] paper background, with subtle fibers visible. A single, continuous horizontal paper-tear strip runs across the entire width of the frame, seamless from the far-right edge to the far-left edge. The torn channel cuts through the metal body of the can and continues across the background on both sides with a barely perceptible and minimal diagonal slope towards the upper-left. The tear channel is significantly broader, revealing a dense, glistening, and vibrant layer of [Description of Fruit Segments/Sacs/Berries] tightly packed inside. Near the extreme far-left end of this tear, the paper is neatly rolled into a tight, realistic coil that occupies almost the entire left margin. The can features a newly designed, minimalist branding: the upper portion has a stylized, abstract line-art illustration of [Fruit Branch/Plant] in a contrasting [Ink Color], set against a subtle matte geometric [Pattern Type] pattern on the can surface. Below this, the brand name \"[Brand Name]\" is printed in an elegant, modern dark typography, with smaller technical text \"330ml - NATURAL EXTRACT\" and a small \"Recyclable\" logo. A small, detailed graphic of the fruit is located below the torn path. The lighting is soft and cinematic, casting delicate drop shadows beneath the torn paper edges and the large left coil. 8k resolution, macro details on fibrous paper and glossy fruit texture."
}
JSON
IM
图像
Poster Design nano-banana-2

[BRAND NAME] | [SLOGAN]. Act as a Professional Editorial Art...

[BRAND NAME] | [SLOGAN]. Act as a Professional Editorial Art Director. PHASE 1: PHYSICS & GROUNDING (THE "STABILITY" RULE). - Analyze [BRAND NAME] category: * CATEGORY A (Active/Sports/Fashion): The subject (person) is in a high-intensity leap, detached from the ground, silhouette against the sky. * CATEGORY B (Automotive/Heavy Goods): The subject (vehicle) must be HEROICALLY GROUNDED. Place the car firmly on a solid surface (asphalt, concrete, or rock). * Perspective: Use an extreme low-angle (worm's-eye view). The car must look massive and dominant, anchored to the bottom of the frame, towering over the viewer. NO floating or flying for vehicles. PHASE 2: DYNAMIC PHOTOGRAPHY & LIGHTING. - Environment: A vast, clear blue sky with minimal soft clouds. - Lighting: Natural, direct sunlight. High-contrast shadows on the subject to emphasize form and texture. - Style: High-end 8k commercial photography. Sharp focus. PHASE 3: TYPOGRAPHY & LAYOUT (MATTE FINISH). - Layout: Use the text from "[SLOGAN]" as massive, ultra-condensed bold sans-serif characters. - Execution: Split "[SLOGAN]" into two parts: one on the far left, one on the far right. - Depth: A part of the subject (e.g., a bumper, a mirror, or a person's limb) must overlap the letters to create a 3D effect. PHASE 4: COLOR STRATEGY (MATTE & REALISTIC). - Graphic Color: NO NEON. Use a solid, matte brand color for the text (e.g., flat Navy for BMW, flat Red for Red Bull). The color must be opaque and non-glowing, resembling high-quality print ink. - Photo Color: Maintain authentic, rich photographic colors for the subject and the sky. The contrast comes from "Flat Graphic vs. Realistic Photo". PHASE 5: FINAL BRANDING. - Logo: Small minimalist [BRAND NAME] logo in the upper corner. - Metadata: Tiny secondary text in a clean sans-serif font at the bottom for a technical/editorial look.

查看 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] | [SLOGAN]. Act as a Professional Editorial Art Director. PHASE 1: PHYSICS & GROUNDING (THE \"STABILITY\" RULE). - Analyze [BRAND NAME] category: * CATEGORY A (Active/Sports/Fashion): The subject (person) is in a high-intensity leap, detached from the ground, silhouette against the sky. * CATEGORY B (Automotive/Heavy Goods): The subject (vehicle) must be HEROICALLY GROUNDED. Place the car firmly on a solid surface (asphalt, concrete, or rock). * Perspective: Use an extreme low-angle (worm's-eye view). The car must look massive and dominant, anchored to the bottom of the frame, towering over the viewer. NO floating or flying for vehicles. PHASE 2: DYNAMIC PHOTOGRAPHY & LIGHTING. - Environment: A vast, clear blue sky with minimal soft clouds. - Lighting: Natural, direct sunlight. High-contrast shadows on the subject to emphasize form and texture. - Style: High-end 8k commercial photography. Sharp focus. PHASE 3: TYPOGRAPHY & LAYOUT (MATTE FINISH). - Layout: Use the text from \"[SLOGAN]\" as massive, ultra-condensed bold sans-serif characters. - Execution: Split \"[SLOGAN]\" into two parts: one on the far left, one on the far right. - Depth: A part of the subject (e.g., a bumper, a mirror, or a person's limb) must overlap the letters to create a 3D effect. PHASE 4: COLOR STRATEGY (MATTE & REALISTIC). - Graphic Color: NO NEON. Use a solid, matte brand color for the text (e.g., flat Navy for BMW, flat Red for Red Bull). The color must be opaque and non-glowing, resembling high-quality print ink. - Photo Color: Maintain authentic, rich photographic colors for the subject and the sky. The contrast comes from \"Flat Graphic vs. Realistic Photo\". PHASE 5: FINAL BRANDING. - Logo: Small minimalist [BRAND NAME] logo in the upper corner. - Metadata: Tiny secondary text in a clean sans-serif font at the bottom for a technical/editorial look."
}
JSON
IM
图像
Poster Design nano-banana-2

A hyper-realistic studio photograph of a male athlete mid-ai...

A hyper-realistic studio photograph of a male athlete mid-air as if running or jumping, wearing a pastel pink sweatshirt and light pink jogger pants, with soft blue sneakers. Pink powder smoke is exploding and swirling around his body, especially behind him and around his legs, creating a dynamic motion effect. Clean minimal background with a soft gradient from light gray to pale pink. Cinematic lighting, ultra-sharp focus, shallow depth of field, fashion advertising style, high detail, 8k, soft shadows, professional studio photography.

查看 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 hyper-realistic studio photograph of a male athlete mid-air as if running or jumping, wearing a pastel pink sweatshirt and light pink jogger pants, with soft blue sneakers. Pink powder smoke is exploding and swirling around his body, especially behind him and around his legs, creating a dynamic motion effect. Clean minimal background with a soft gradient from light gray to pale pink. Cinematic lighting, ultra-sharp focus, shallow depth of field, fashion advertising style, high detail, 8k, soft shadows, professional studio photography."
}
JSON
IM
图像
Poster Design nano-banana-2

Style & Composition: High-fashion editorial typography poste...

Style & Composition: High-fashion editorial typography poster with a strict 1:2 composition split. Layout & Ratio: The frame is divided so that the right two-thirds show the full subject and background, while the left one-third is reserved for the typography masking section. Typography Masking: A massive, ultra-bold, vertical word "[WORD]" is placed on the left third. The text is strictly full-bleed, stretching perfectly and touching the absolute top and absolute bottom edges of the frame with zero vertical padding, gaps, or margins. This typography acts as a stencil mask: the letters reveal the underlying character, while the space to the far left of the letters is a solid, clean white. Subject Details & Positioning: An upper-body shot of [CHARACTER DESCRIPTION]. The model is positioned so that only her left-most side is visible through the letters, while the rest of her body is fully visible and contained on the right side against a solid [COLOR] background, ensuring no part of the subject is cropped by the right edge of the frame. Pose: [POSE DESCRIPTION], ensuring the silhouette remains within the center of the right two-thirds area. Secondary Text: In the top right corner, add the text: "[TEXT]". Use a small, sophisticated, white "Helvetica Condensed" style font with wide letter spacing (kerning) for a premium, minimalist look. Color Palette: A strict monochromatic [COLOR] theme, sharply contrasted by the crisp white negative space on the left. 8k resolution, photorealistic textures, sharp studio lighting, high contrast, clean graphic design aesthetic.

查看 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 & Composition: High-fashion editorial typography poster with a strict 1:2 composition split. Layout & Ratio: The frame is divided so that the right two-thirds show the full subject and background, while the left one-third is reserved for the typography masking section. Typography Masking: A massive, ultra-bold, vertical word \"[WORD]\" is placed on the left third. The text is strictly full-bleed, stretching perfectly and touching the absolute top and absolute bottom edges of the frame with zero vertical padding, gaps, or margins. This typography acts as a stencil mask: the letters reveal the underlying character, while the space to the far left of the letters is a solid, clean white. Subject Details & Positioning: An upper-body shot of [CHARACTER DESCRIPTION]. The model is positioned so that only her left-most side is visible through the letters, while the rest of her body is fully visible and contained on the right side against a solid [COLOR] background, ensuring no part of the subject is cropped by the right edge of the frame. Pose: [POSE DESCRIPTION], ensuring the silhouette remains within the center of the right two-thirds area. Secondary Text: In the top right corner, add the text: \"[TEXT]\". Use a small, sophisticated, white \"Helvetica Condensed\" style font with wide letter spacing (kerning) for a premium, minimalist look. Color Palette: A strict monochromatic [COLOR] theme, sharply contrasted by the crisp white negative space on the left. 8k resolution, photorealistic textures, sharp studio lighting, high contrast, clean graphic design aesthetic."
}
JSON
IM
图像
Poster Design nano-banana-2

Minimalist fashion studio photoshoot featuring stylish peopl...

Minimalist fashion studio photoshoot featuring stylish people sitting confidently on a modern chair, monochromatic aesthetic, subjects wearing bold cobalt-blue outfits (tailored suit or modern streetwear set) with white sneakers and clear glasses, relaxed powerful pose with legs apart and hands resting naturally, clean blue studio background with a large geometric letter “A” behind them, soft professional studio lighting, fashion editorial composition, modern luxury brand campaign style, ultra-realistic, sharp focus, high detail, 8K.

查看 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": "Minimalist fashion studio photoshoot featuring stylish people sitting confidently on a modern chair, monochromatic aesthetic, subjects wearing bold cobalt-blue outfits (tailored suit or modern streetwear set) with white sneakers and clear glasses, relaxed powerful pose with legs apart and hands resting naturally, clean blue studio background with a large geometric letter “A” behind them, soft professional studio lighting, fashion editorial composition, modern luxury brand campaign style, ultra-realistic, sharp focus, high detail, 8K."
}
JSON
IM
图像
Poster Design nano-banana-2

A dynamic fashion advertisement for Nike showing a hyper-rea...

A dynamic fashion advertisement for Nike showing a hyper-realistic model mid-twist jump, light trails following her limbs. Background: prism-shifting gradient (hot magenta to sapphire) with refracted lens flares. The model wears iridescent Nike runner tights and a cropped tech hoodie in holographic white. Bold serif "NIKE" and motion-glitched "LUMINA" in layered text behind. High-energy, futuristic aesthetic with fashion gloss

查看 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 dynamic fashion advertisement for Nike showing a hyper-realistic model mid-twist jump, light trails following her limbs. Background: prism-shifting gradient (hot magenta to sapphire) with refracted lens flares. The model wears iridescent Nike runner tights and a cropped tech hoodie in holographic white. Bold serif \"NIKE\" and motion-glitched \"LUMINA\" in layered text behind. High-energy, futuristic aesthetic with fashion gloss"
}
JSON
IM
图像
Poster Design nano-banana-2

{   "edit_type": "creative_composite_layering",   "source":...

{ "edit_type": "creative_composite_layering", "source": { "_hint": "Base logic: Character (Ref 1) superimposed ON TOP OF the Background Image (Ref 2).", "mode": "EDIT", "reference_images": { "first": "foreground_character_person", "second": "background_scenery_or_pattern" }, "preserve_from_first": { "same_person_or_group": true, "same_faces": true, "same_hairstyles": true, "same_outfits": true } }, "identity": { "keep_identity_consistent": true, "expression": "bright_engaging_smile_at_camera" }, "camera_effect": { "_hint": "High-angle selfie style, creating a sense of depth between the hand and face.", "perspective": "high_angle_shot_looking_down", "style": "social_media_call_to_action", "depth_of_field": "focus_on_face_and_pointing_finger", "framing": "character_centered_with_space_at_top_right" }, "pose": { "_hint": "Key action: Lying down but actively pointing to the 'Follow' button area (Top Right).", "pose_style": "lying_down_or_reclining_on_back", "face_direction": "looking_directly_up_into_lens", "hand_gestures": { "right_hand_action": "pointing_index_finger", "target_direction": "upper_right_corner_45_degrees", "purpose": "mimicking_pressing_subscribe_button", "arm_position": "extended_towards_camera_top_right" }, "body_language": "inviting_and_energetic", "style_tags": [ "kpop_idol_fan_service", "influencer_promo_style", "dynamic_perspective" ] }, "background_integration": { "_hint": "The second reference image is the background/floor.", "method": "full_background_replacement", "target_area": "entire_canvas_behind_character", "content_source": "reference_image_second", "perspective_match": "flat_lay_style", "rules": { "character_must_be_top_layer": true, "leave_space_in_upper_right_for_ui": true } }, "composition": { "_hint": "Ensure the pointing finger leads the viewer's eye to the top right corner.", "visual_flow": "diagonal_line_from_face_to_top_right_corner", "focal_points": [ "character_eyes", "pointing_finger_tip" ], "negative_space": "clear_area_at_top_right_45_degrees" }, "constraints": { "no_holding_phone_device": true, "finger_must_not_be_cropped_out": true, "ensure_arm_is_natural_length": true "3:4" } }

查看 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": "{ \"edit_type\": \"creative_composite_layering\", \"source\": { \"_hint\": \"Base logic: Character (Ref 1) superimposed ON TOP OF the Background Image (Ref 2).\", \"mode\": \"EDIT\", \"reference_images\": { \"first\": \"foreground_character_person\", \"second\": \"background_scenery_or_pattern\" }, \"preserve_from_first\": { \"same_person_or_group\": true, \"same_faces\": true, \"same_hairstyles\": true, \"same_outfits\": true } }, \"identity\": { \"keep_identity_consistent\": true, \"expression\": \"bright_engaging_smile_at_camera\" }, \"camera_effect\": { \"_hint\": \"High-angle selfie style, creating a sense of depth between the hand and face.\", \"perspective\": \"high_angle_shot_looking_down\", \"style\": \"social_media_call_to_action\", \"depth_of_field\": \"focus_on_face_and_pointing_finger\", \"framing\": \"character_centered_with_space_at_top_right\" }, \"pose\": { \"_hint\": \"Key action: Lying down but actively pointing to the 'Follow' button area (Top Right).\", \"pose_style\": \"lying_down_or_reclining_on_back\", \"face_direction\": \"looking_directly_up_into_lens\", \"hand_gestures\": { \"right_hand_action\": \"pointing_index_finger\", \"target_direction\": \"upper_right_corner_45_degrees\", \"purpose\": \"mimicking_pressing_subscribe_button\", \"arm_position\": \"extended_towards_camera_top_right\" }, \"body_language\": \"inviting_and_energetic\", \"style_tags\": [ \"kpop_idol_fan_service\", \"influencer_promo_style\", \"dynamic_perspective\" ] }, \"background_integration\": { \"_hint\": \"The second reference image is the background/floor.\", \"method\": \"full_background_replacement\", \"target_area\": \"entire_canvas_behind_character\", \"content_source\": \"reference_image_second\", \"perspective_match\": \"flat_lay_style\", \"rules\": { \"character_must_be_top_layer\": true, \"leave_space_in_upper_right_for_ui\": true } }, \"composition\": { \"_hint\": \"Ensure the pointing finger leads the viewer's eye to the top right corner.\", \"visual_flow\": \"diagonal_line_from_face_to_top_right_corner\", \"focal_points\": [ \"character_eyes\", \"pointing_finger_tip\" ], \"negative_space\": \"clear_area_at_top_right_45_degrees\" }, \"constraints\": { \"no_holding_phone_device\": true, \"finger_must_not_be_cropped_out\": true, \"ensure_arm_is_natural_length\": true \"3:4\" } }"
}
JSON
IM
图像
Poster Design nano-banana-2

[PERSON NAME]. Act as a graphic designer creating a minimali...

[PERSON NAME]. Act as a graphic designer creating a minimalist, avant-garde streetwear poster. COMPOSITION (THE FUSION): The image is a creative fusion of a massive typographic name and a monochrome portrait of [PERSON NAME]. The Subject: A high-contrast, black-and-white full-body or 3/4 cut-out photograph of [PERSON NAME]. The subject stands centrally, looking cool and detached. The Typography: The person's name is written horizontally across the entire width of the image. The text interacts with the body: the person stands through the letters, creating a "woven" depth effect (some limbs in front of text, some behind), or the portrait creates a silhouette mask for the text. TYPOGRAPHY STYLE (MIXED SCRIPTS): Mimic the specific "Street Editorial" font pairing: The First Letter: The initial letter of the name is rendered in a large, sweeping, expressive Calligraphic Script or Brush font (dynamic and loose). The Rest of the Name: The remaining letters are rendered in an Ultra-Heavy, Geometric Sans-Serif font (like Impact or Helvetica Black). Color: The text is solid Dark Grey or Black. AESTHETICS & ATMOSPHERE: Palette: Strictly Monochrome (Black, White, and Greyscale). Background: Pure, vast White Minimalist background. Extensive negative space. Vibe: Raw, "Zine" aesthetic, cut-and-paste collage feel, high-fashion streetwear poster. LAYOUT DETAILS: Add very small, microscopic functional text in the extreme corners (e.g., "poster design", "2025", "fig 01") to enhance the Swiss Design poster feel.

查看 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": "[PERSON NAME]. Act as a graphic designer creating a minimalist, avant-garde streetwear poster. COMPOSITION (THE FUSION): The image is a creative fusion of a massive typographic name and a monochrome portrait of [PERSON NAME]. The Subject: A high-contrast, black-and-white full-body or 3/4 cut-out photograph of [PERSON NAME]. The subject stands centrally, looking cool and detached. The Typography: The person's name is written horizontally across the entire width of the image. The text interacts with the body: the person stands through the letters, creating a \"woven\" depth effect (some limbs in front of text, some behind), or the portrait creates a silhouette mask for the text. TYPOGRAPHY STYLE (MIXED SCRIPTS): Mimic the specific \"Street Editorial\" font pairing: The First Letter: The initial letter of the name is rendered in a large, sweeping, expressive Calligraphic Script or Brush font (dynamic and loose). The Rest of the Name: The remaining letters are rendered in an Ultra-Heavy, Geometric Sans-Serif font (like Impact or Helvetica Black). Color: The text is solid Dark Grey or Black. AESTHETICS & ATMOSPHERE: Palette: Strictly Monochrome (Black, White, and Greyscale). Background: Pure, vast White Minimalist background. Extensive negative space. Vibe: Raw, \"Zine\" aesthetic, cut-and-paste collage feel, high-fashion streetwear poster. LAYOUT DETAILS: Add very small, microscopic functional text in the extreme corners (e.g., \"poster design\", \"2025\", \"fig 01\") to enhance the Swiss Design poster feel."
}
JSON
IM
图像
Poster Design nano-banana-2

Create a digital modern maximalism style sports collage of [...

Create a digital modern maximalism style sports collage of [TEAm Name] [Player name] visuals with grainy textures, abstract geometric shapes, dynamic grid layout, minimal background, contemporary editorial composition, inspired by [BRAND NAME ex Nike...] campaigns and modern sports graphic design, strong visual rhythm, bold and emotional atmosphere. Post-process film grain, and specially cinematic color-graded tones for serious intensity.

查看 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 digital modern maximalism style sports collage of [TEAm Name] [Player name] visuals with grainy textures, abstract geometric shapes, dynamic grid layout, minimal background, contemporary editorial composition, inspired by [BRAND NAME ex Nike...] campaigns and modern sports graphic design, strong visual rhythm, bold and emotional atmosphere. Post-process film grain, and specially cinematic color-graded tones for serious intensity."
}
JSON
IM
图像
Poster Design nano-banana-2

Pixar 3D CGI animated movie poster style, ensemble cast feat...

Pixar 3D CGI animated movie poster style, ensemble cast featuring the most iconic and recognizable characters from [MOVIE/SHOW], all rendered as Pixar-style 3D animated characters with exaggerated expressive faces, smooth stylized skin, big eyes, chunky proportions. Characters automatically selected as the most famous heroes and villains from [MOVIE/SHOW]. Dramatic layered composition: central hero front and center, others fanned behind in dynamic action poses. Background color automatically chosen to match the iconic tone and palette of [MOVIE/SHOW]. Bold title text at bottom: [MOVIE/SHOW] in the original film's iconic font style. Cinematic lighting, rim light on characters, deep shadows. 3:4 vertical aspect ratio. High detail, polished Pixar feature film aesthetic.

查看 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": "Pixar 3D CGI animated movie poster style, ensemble cast featuring the most iconic and recognizable characters from [MOVIE/SHOW], all rendered as Pixar-style 3D animated characters with exaggerated expressive faces, smooth stylized skin, big eyes, chunky proportions. Characters automatically selected as the most famous heroes and villains from [MOVIE/SHOW]. Dramatic layered composition: central hero front and center, others fanned behind in dynamic action poses. Background color automatically chosen to match the iconic tone and palette of [MOVIE/SHOW]. Bold title text at bottom: [MOVIE/SHOW] in the original film's iconic font style. Cinematic lighting, rim light on characters, deep shadows. 3:4 vertical aspect ratio. High detail, polished Pixar feature film aesthetic."
}
JSON
IM
图像
Poster Design nano-banana-2

[upload luxury product photo] BRAND NAME: [Put the brand nam...

[upload luxury product photo] BRAND NAME: [Put the brand name here] Create ONE luxury editorial poster. Keep the product EXACT and unchanged. Use the BRAND NAME to infer identity and place the REAL official logo (correct proportions) in the most brand-appropriate position with subtle print texture. Add a perfectly matched attractive model wearing the product naturally. Rich deep colors, HDR, premium studio lighting, clean background, strong negative space, ultra-sharp 8K. No extra text, no watermark.

查看 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": "[upload luxury product photo] BRAND NAME: [Put the brand name here] Create ONE luxury editorial poster. Keep the product EXACT and unchanged. Use the BRAND NAME to infer identity and place the REAL official logo (correct proportions) in the most brand-appropriate position with subtle print texture. Add a perfectly matched attractive model wearing the product naturally. Rich deep colors, HDR, premium studio lighting, clean background, strong negative space, ultra-sharp 8K. No extra text, no watermark."
}
JSON
IM
图像
Poster Design nano-banana-2

A hyper-realistic macro shot of a paintbrush creating a thic...

A hyper-realistic macro shot of a paintbrush creating a thick textured paint stroke on a clean white background. The paint forms the shape and colors of the [COUNTRY FLAG], flowing dynamically like a wave. Inside the paint stroke, a highly detailed miniature cityscape of [COUNTRY NAME] emerges, including iconic landmarks such as [LANDMARK 1], [LANDMARK 2], [LANDMARK 3]. The paint has visible brush textures, glossy acrylic finish, rich vibrant colors.

查看 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 hyper-realistic macro shot of a paintbrush creating a thick textured paint stroke on a clean white background. The paint forms the shape and colors of the [COUNTRY FLAG], flowing dynamically like a wave. Inside the paint stroke, a highly detailed miniature cityscape of [COUNTRY NAME] emerges, including iconic landmarks such as [LANDMARK 1], [LANDMARK 2], [LANDMARK 3]. The paint has visible brush textures, glossy acrylic finish, rich vibrant colors."
}
JSON
IM
图像
Poster Design nano-banana-2

[PERSONE]. Act as a Senior Art Director. PHASE 1: PHOTOGRAP...

[PERSONE]. Act as a Senior Art Director. PHASE 1: PHOTOGRAPHIC COMPOSITION. - Layered Effect: Double exposure photographic collage. High-definition action shot in the foreground; massive monumental silhouette in the background. - Overlap: The subject must seamlessly integrate with the background graphics. PHASE 2: CONTEXTUAL VIBE SIMULATION. - Identity Analysis: Autonomously identify the core industry of [PERSONE] (Sport, Music, Cinema, or Business). - Pose & Props: PHASE 3: DYNAMIC COLOR & BRAND SIMULATION (VARIABLE COLORS). - Primary Color (Atmosphere): Identify the MOST ICONIC color associated with [PERSONE] or their team/brand. Use this for the background, halftone textures, and smoke. - Accent Color (Impact): Identify a secondary high-contrast VIBRANT hue (e.g., neon, gold, or electric white). Use this for the "Radial Burst" rays. - Visual Texture: Apply heavy film grain and halftone dots (screen printing effect) to the shadows of the high-res photos. PHASE 4: GRAPHIC ACCENTS. - Geometry: Bold radial rays bursting from the center. Fluid, wave-like organic shapes at the base. - Birds: Minimalist black bird silhouettes for scale and depth. PHASE 5: BRANDING & TEXT. - Tagline: Generate a powerful, one-word or two-word slogan tailored to [PERSONE]'s legacy. - Logo: Place a minimalist, industry-appropriate logo in the bottom corner. - Typography: Bold, high-impact Sans-Serif. TECHNICAL FINISH: - Quality: 8k resolution, authentic commercial photography style (NOT an illustration). - Lighting: Extreme studio rim-lighting (contour highlights) to separate the photographic subjects from the graphic layers.

查看 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": "[PERSONE]. Act as a Senior Art Director. PHASE 1: PHOTOGRAPHIC COMPOSITION. - Layered Effect: Double exposure photographic collage. High-definition action shot in the foreground; massive monumental silhouette in the background. - Overlap: The subject must seamlessly integrate with the background graphics. PHASE 2: CONTEXTUAL VIBE SIMULATION. - Identity Analysis: Autonomously identify the core industry of [PERSONE] (Sport, Music, Cinema, or Business). - Pose & Props: PHASE 3: DYNAMIC COLOR & BRAND SIMULATION (VARIABLE COLORS). - Primary Color (Atmosphere): Identify the MOST ICONIC color associated with [PERSONE] or their team/brand. Use this for the background, halftone textures, and smoke. - Accent Color (Impact): Identify a secondary high-contrast VIBRANT hue (e.g., neon, gold, or electric white). Use this for the \"Radial Burst\" rays. - Visual Texture: Apply heavy film grain and halftone dots (screen printing effect) to the shadows of the high-res photos. PHASE 4: GRAPHIC ACCENTS. - Geometry: Bold radial rays bursting from the center. Fluid, wave-like organic shapes at the base. - Birds: Minimalist black bird silhouettes for scale and depth. PHASE 5: BRANDING & TEXT. - Tagline: Generate a powerful, one-word or two-word slogan tailored to [PERSONE]'s legacy. - Logo: Place a minimalist, industry-appropriate logo in the bottom corner. - Typography: Bold, high-impact Sans-Serif. TECHNICAL FINISH: - Quality: 8k resolution, authentic commercial photography style (NOT an illustration). - Lighting: Extreme studio rim-lighting (contour highlights) to separate the photographic subjects from the graphic layers."
}
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 当作起点,再补充品牌规则、输出尺寸、安全约束和你的业务上下文。