← 返回
内容创作 Key 中文

Nano Banana Pro Image Generation&Editing

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image / Imagen Pro) — the premium AI image generation model optimized for professional...
使用谷歌的 Nano Banana Pro(Gemini 3 Pro Image / Imagen Pro)生成和编辑图像——专为专业需求优化的高端 AI 图像生成模型。
xixihhhh
内容创作 clawhub v1.0.9 2 版本 99892.5 Key: 需要
★ 1
Stars
📥 909
下载
💾 73
安装
2
版本
#latest

概述

Nano Banana Pro Image Generation & Editing

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) — the premium AI image generation model designed for professional asset production, utilizing advanced reasoning ("Thinking") to follow complex instructions and render high-fidelity text in images.

Nano Banana Pro excels at infographics, menus, diagrams, marketing assets, and any task requiring precise text rendering and complex multi-object composition.

> Data usage note: This skill sends text prompts and image URLs/data to Atlas Cloud API for image generation. No data is stored locally beyond the downloaded output files.

> Security note: API keys are read exclusively from environment variables (ATLASCLOUD_API_KEY) and passed via HTTP headers — never embedded in URL query strings or command arguments. All user-provided text (prompts, file paths) must be passed through JSON request bodies to prevent shell injection. When constructing curl commands, always use a JSON payload (-d '{...}') rather than string interpolation in the shell. File paths should be validated before use. The skill does not execute any user-provided code — it only sends structured API requests and downloads output files.


Nano Banana Pro vs Nano Banana 2

FeatureNano Banana ProNano Banana 2
---------:--------------::-------------:
FocusProfessional quality, complex tasksSpeed, high-volume generation
Text renderingSuperior — best for infographics, menusGood
Thinking modeEnabled by defaultNot available
Reference images (object)Up to 6Up to 10
Character consistency imagesUp to 5Up to 14
ResolutionUp to 4KUp to 4K

Choose Nano Banana Pro when quality and text precision matter. Choose Nano Banana 2 when speed and cost matter.


Pricing

ResolutionAtlas Cloud StandardAtlas Cloud Developer
:----------::-------------------::--------------------:
1K$0.126$0.098
2K$0.126$0.098
4K$0.126$0.098

Atlas Cloud uses flat-rate pricing regardless of resolution.


Available Models

Model IDTierPriceBest For
---------------------------------
google/nano-banana-pro/text-to-imageStandard$0.126/imageProduction, high-quality output
google/nano-banana-pro/text-to-image-developerDeveloper$0.098/imagePrototyping, experiments
google/nano-banana-pro/editStandard$0.126/imageProduction editing
google/nano-banana-pro/edit-developerDeveloper$0.098/imageBudget editing, experiments

Atlas Cloud API

Setup

  1. Sign up at https://www.atlascloud.ai
  2. Console → API Keys → Create new key
  3. Set env: export ATLASCLOUD_API_KEY="your-key"

Parameters

Text-to-Image:

ParameterTypeRequiredDefaultOptions
---------------------------------------------
promptstringYes-Image description
aspect_ratiostringNo1:11:1, 3:2, 2:3, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, 21:9
resolutionstringNo1k1k, 2k, 4k
output_formatstringNopngpng, jpeg

Image Editing — same as above plus:

ParameterTypeRequiredDescription
----------------------------------------
imagesarray of stringsYes1-10 image URLs to edit

Workflow: Submit → Poll → Download

# Step 1: Submit
curl -s -X POST "https://api.atlascloud.ai/api/v1/model/generateImage" \
  -H "Authorization: Bearer $ATLASCLOUD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "google/nano-banana-pro/text-to-image",
    "prompt": "A professional infographic showing quarterly revenue growth with bar charts and annotations",
    "aspect_ratio": "16:9",
    "resolution": "2k"
  }'
# Returns: { "code": 200, "data": { "id": "prediction-id" } }

# Step 2: Poll (every 3-5 seconds until "completed" or "succeeded")
curl -s "https://api.atlascloud.ai/api/v1/model/prediction/{prediction-id}" \
  -H "Authorization: Bearer $ATLASCLOUD_API_KEY"
# Returns: { "code": 200, "data": { "status": "completed", "outputs": ["https://...url..."] } }

# Step 3: Download
curl -o output.png "IMAGE_URL_FROM_OUTPUTS"

Image editing example:

curl -s -X POST "https://api.atlascloud.ai/api/v1/model/generateImage" \
  -H "Authorization: Bearer $ATLASCLOUD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "google/nano-banana-pro/edit",
    "prompt": "Replace the text on the sign with: Grand Opening Sale — 50% Off",
    "images": ["https://example.com/storefront.jpg"],
    "resolution": "2k"
  }'

Polling logic:

  • processing / starting / running → wait 3-5s, retry (Pro model may take longer than Nano Banana 2 due to Thinking mode)
  • completed / succeeded → done, get URL from data.outputs[]
  • failed → error, read data.error

Atlas Cloud MCP Tools (if available)

If the Atlas Cloud MCP server is configured, use built-in tools:

atlas_quick_generate(model_keyword="nano banana pro", type="Image", prompt="...")
atlas_generate_image(model="google/nano-banana-pro/text-to-image", params={...})
atlas_get_prediction(prediction_id="...")

Implementation Guide

  1. Check API key: Ensure ATLASCLOUD_API_KEY is set. If not, ask the user to sign up at https://www.atlascloud.ai and set export ATLASCLOUD_API_KEY="your-key".
  1. Extract parameters:
    • Prompt: the image description — Nano Banana Pro handles complex, detailed prompts well
    • Aspect ratio: infer from context (infographic→3:4 or 9:16, banner→16:9, menu→3:4, social post→1:1)
    • Resolution: default 1k, use 2k/4k for professional output
    • For editing: identify source image URL(s) or local file path
  1. Choose model tier:
    • Standard for production use
    • Developer if user wants to save costs or is experimenting
  1. Sanitize inputs: Ensure user-provided prompts and file paths do not contain shell metacharacters. Always pass prompts inside JSON payloads (never via shell interpolation). Validate that image file paths exist and are readable before encoding.
  1. Execute: POST to Atlas Cloud generateImage API → poll prediction (may take 10-30s due to Thinking mode) → download result
  1. Present result: show file path, offer to open

Prompt Tips for Nano Banana Pro

Nano Banana Pro excels at understanding complex, structured prompts. Take advantage of its Thinking mode:

  • Text in images: Include exact text in quotes — Pro renders text with high fidelity. Example: "A cafe chalkboard menu reading: 'Today's Special — Matcha Latte $5.50'"
  • Infographics: Describe data, layout, and annotations. Example: "An infographic showing 3 steps of coffee brewing with numbered icons and captions"
  • Marketing assets: Specify brand colors, text placement, and style. Example: "A product banner with dark background, gold accents, text 'Limited Edition' top-center"
  • Complex compositions: Describe spatial relationships and multiple objects. Example: "A still life with a ceramic vase left-center, three oranges arranged in front, and a linen cloth draped over the table edge"
  • Style: "photorealistic", "editorial illustration", "minimalist flat design", "watercolor"
  • Lighting: "studio lighting", "natural window light", "dramatic chiaroscuro"

版本历史

共 2 个版本

  • v1.0.9 当前
    2026-03-29 07:31 安全 安全
  • v1.0.2
    2026-03-26 21:41

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

content-creation

Humanizer

biostartechnology
消除AI写作痕迹,使文本更自然真实。基于维基百科"AI写作特征"指南,识别并修正夸张象征、宣传用语、肤浅-ing分析、模糊归因、破折号滥用、三项排比、AI词汇、负面平行结构及冗长连接词等模式。
★ 860 📥 200,077
content-creation

Baidu Wenku AIPPT

ide-rea
使用百度文库 AI 智能生成 PPT,自动根据内容选择模板。
★ 66 📥 46,232
content-creation

YouTube

byungkyu
使用托管OAuth集成YouTube Data API,支持搜索视频、管理播放列表、获取频道数据及评论互动,适用于用户需要时使用此技能。
★ 142 📥 41,104