网易首页 > 网易号 > 正文 申请入驻

刚刚,谷歌放出Nano Banana六大正宗Prompt玩法,手残党速来

0
分享至


机器之心报道

机器之心编辑部

最近几天,谷歌 Nano Banana 可是被广大网友玩出了新花样。

比如制作精致可爱的产品照片:

来源:https://x.com/azed_ai/status/1962878353784066342

将 13 张图像合并为单个图像 :

来源:https://x.com/MrDavids1/status/1960783672665128970

给人一键换衣:

反正你想到的,想不到的脑洞,都被广大网友挖掘出来了。

但别忘了,这些效果可不是凭空生成的。背后真正的魔法,其实是提示词。网友们正是用一条条巧妙的提示词,把这个模型玩出了无限可能。

就在刚刚,谷歌官方公布了 Nano Banana 六个文本转图像提示:

原文链接:https://x.com/googleaistudio/status/1962957615262224511

根据这些提示,你可以进行以下操作:

  • 文本生成图像:通过简单或复杂的文本描述生成高质量图像。
  • 图像 + 文本生成图像(图像编辑):提供一张图片,并使用文本提示词添加、删除或修改图像元素,调整风格或颜色。
  • 多图合成与风格迁移:输入多张图片,合成新的场景,或将其中一张的风格迁移到另一张上。
  • 迭代式优化:通过对话逐步优化图像,每次做小调整,直到达到理想效果。
  • 文本渲染:生成包含清晰、布局合理文字的图像,适用于 logo、图表、海报等视觉创作。

谷歌强调,这些指令可以最大限度的发挥 Nano Banana 的图像生成能力。

接下来,我们看看这些提示具体包含的内容:

1、照片级写实场景

对于写实风格的图像,要像摄影师一样思考。prompt 中要提及机位角度、镜头类型、光线以及细节描写,这样可以引导模型生成更逼真的效果。

模板如下:

A photorealistic [shot type] of [subject], [action or expression], set in [environment]. The scene is illuminated by [lighting description], creating a [mood] atmosphere. Captured with a [camera/lens details], emphasizing [key textures and details]. The image should be in a [aspect ratio] format.

代码块如下:

from google import genaifrom google.genai import typesfrom PIL import Imagefrom io import BytesIOclient = genai.Client()# Generate an image from a text promptresponse = client.models.generate_content( model="gemini-2.5-flash-image-preview", contents="A photorealistic close-up portrait of an elderly Japanese ceramicist with deep, sun-etched wrinkles and a warm, knowing smile. He is carefully inspecting a freshly glazed tea bowl. The setting is his rustic, sun-drenched workshop with pottery wheels and shelves of clay pots in the background. The scene is illuminated by soft, golden hour light streaming through a window, highlighting the fine texture of the clay and the fabric of his apron. Captured with an 85mm portrait lens, resulting in a soft, blurred background (bokeh). The overall mood is serene and masterful.",)image_parts = [ part.inline_data.data for part in response.candidates[0].content.parts if part.inline_data]if image_parts: image = Image.open(BytesIO(image_parts[0])) image.save('photorealistic_example.png') image.show()

下图使用的完整 prompt 为「A photorealistic close-up portrait of an elderly Japanese ceramicist with deep, sun-etched wrinkles and a warm, knowing smile. He is carefully inspecting a freshly glazed tea bowl. The setting is his rustic, sun-drenched workshop. The scene is illuminated by soft, golden hour light streaming through a window, highlighting the fine texture of the clay. Captured with an 85mm portrait lens, resulting in a soft, blurred background (bokeh). The overall mood is serene and masterful. Vertical portrait orientation.」

2、风格化插画与贴纸

在制作贴纸、图标或项目素材时,在 prompt 中明确说明需要的风格;另外,如果需要白色背景,记得在 prompt 中提出来。

模板如下:

A [style] sticker of a [subject], featuring [key characteristics] and a [color palette]. The design should have [line style] and [shading style]. The background must be white.

代码块如下所示:

from google import genaifrom google.genai import typesfrom PIL import Imagefrom io import BytesIOclient = genai.Client()# Generate an image from a text promptresponse = client.models.generate_content( model="gemini-2.5-flash-image-preview", contents="A kawaii-style sticker of a happy red panda wearing a tiny bamboo hat. It's munching on a green bamboo leaf. The design features bold, clean outlines, simple cel-shading, and a vibrant color palette. The background must be white.",)image_parts = [ part.inline_data.data for part in response.candidates[0].content.parts if part.inline_data]if image_parts: image = Image.open(BytesIO(image_parts[0])) image.save('red_panda_sticker.png') image.show()

下图使用的完整 prompt 为「A kawaii-style sticker of a happy red panda wearing a tiny bamboo hat. It's munching on a green bamboo leaf. The design features bold, clean outlines, simple cel-shading, and a vibrant color palette. The background must be white.」

3、图上添加精准的文字

Gemini 擅长渲染文字。此类任务最好在 prompt 中明确说明文字内容、字体风格(用描述性的方式),以及整体设计。

模板如下:

Create a [image type] for [brand/concept] with the text "[text to render]" in a [font style]. The design should be [style description], with a [color scheme].

代码块如下:

from google import genaifrom google.genai import typesfrom PIL import Imagefrom io import BytesIOclient = genai.Client()# Generate an image from a text promptresponse = client.models.generate_content( model="gemini-2.5-flash-image-preview", contents="Create a modern, minimalist logo for a coffee shop called 'The Daily Grind'. The text should be in a clean, bold, sans-serif font. The design should feature a simple, stylized icon of a a coffee bean seamlessly integrated with the text. The color scheme is black and white.",)image_parts = [ part.inline_data.data for part in response.candidates[0].content.parts if part.inline_data]if image_parts: image = Image.open(BytesIO(image_parts[0])) image.save('logo_example.png') image.show()

下图使用的完整 prompt 为「Create a modern, minimalist logo for a coffee shop called 'The Daily Grind'. The text should be in a clean, bold, sans-serif font. The design should feature a simple, stylized icon of a coffee bean seamlessly integrated with the text. The color scheme is black and white. 」

4、产品模型与商业摄影

适合在电商、广告或品牌宣传时制作干净、专业的产品照片。

模板如下:

A high-resolution, studio-lit product photograph of a [product description] on a [background surface/description]. The lighting is a [lighting setup, e.g., three-point softbox setup] to [lighting purpose]. The camera angle is a [angle type] to showcase [specific feature].
Ultra-realistic, with sharp focus on [key detail]. [Aspect ratio].

代码块如下:

from google import genaifrom google.genai import typesfrom PIL import Imagefrom io import BytesIOclient = genai.Client()# Generate an image from a text promptresponse = client.models.generate_content( model="gemini-2.5-flash-image-preview", contents="A high-resolution, studio-lit product photograph of a minimalist ceramic coffee mug in matte black, presented on a polished concrete surface. The lighting is a three-point softbox setup designed to create soft, diffused highlights and eliminate harsh shadows. The camera angle is a slightly elevated 45-degree shot to showcase its clean lines. Ultra-realistic, with sharp focus on the steam rising from the coffee. Square image.",)image_parts = [ part.inline_data.data for part in response.candidates[0].content.parts if part.inline_data]if image_parts: image = Image.open(BytesIO(image_parts[0])) image.save('product_mockup.png') image.show()

下图使用的完整 prompt 为「A high-resolution, studio-lit product photograph of a minimalist ceramic coffee mug in matte black, presented on a polished concrete surface. The lighting is a three-point softbox setup designed to create soft, diffused highlights and eliminate harsh shadows. The camera angle is a slightly elevated 45-degree shot to showcase its clean lines. Ultra-realistic, with sharp focus on the steam rising from the coffee. Square image.」

5、极简与留白设计

适合用于创建网站、演示文稿或营销素材的背景,并在其上叠加文字内容。

模板如下:

A minimalist composition featuring a single [subject] positioned in the [bottom-right/top-left/etc.] of the frame. The background is a vast, empty [color] canvas, creating significant negative space. Soft, subtle lighting. [Aspect ratio].

代码块如下:

from google import genaifrom google.genai import typesfrom PIL import Imagefrom io import BytesIOclient = genai.Client()# Generate an image from a text promptresponse = client.models.generate_content( model="gemini-2.5-flash-image-preview", contents="A minimalist composition featuring a single, delicate red maple leaf positioned in the bottom-right of the frame. The background is a vast, empty off-white canvas, creating significant negative space for text. Soft, diffused lighting from the top left. Square image.",)image_parts = [ part.inline_data.data for part in response.candidates[0].content.parts if part.inline_data]if image_parts: image = Image.open(BytesIO(image_parts[0])) image.save('minimalist_design.png') image.show()

下图使用的完整 prompt 为「A minimalist composition featuring a single, delicate red maple leaf positioned in the bottom-right of the frame. The background is a vast, empty off-white canvas, creating significant negative space for text. Soft, diffused lighting from the top left. Square image.」

6、连续性艺术(漫画分镜 / 分镜头脚本)

通过逐格描绘,创作引人入胜的视觉叙事,适合用于开发分镜头脚本、漫画条幅或任意形式的连续性艺术。重点在于清晰的场景描述。

模板如下:

A single comic book panel in a [art style] style. In the foreground, [character description and action]. In the background, [setting details]. The panel has a [dialogue/caption box] with the text "[Text]". The lighting creates a [mood] mood. [Aspect ratio].

代码块如下:

from google import genaifrom google.genai import typesfrom PIL import Imagefrom io import BytesIOclient = genai.Client()# Generate an image from a text promptresponse = client.models.generate_content( model="gemini-2.5-flash-image-preview", contents="A single comic book panel in a gritty, noir art style with high-contrast black and white inks. In the foreground, a detective in a trench coat stands under a flickering streetlamp, rain soaking his shoulders. In the background, the neon sign of a desolate bar reflects in a puddle. A caption box at the top reads \"The city was a tough place to keep secrets.\" The lighting is harsh, creating a dramatic, somber mood. Landscape.",)image_parts = [ part.inline_data.data for part in response.candidates[0].content.parts if part.inline_data]if image_parts: image = Image.open(BytesIO(image_parts[0])) image.save('comic_panel.png') image.show()

下图使用的完整 prompt 为「A single comic book panel in a gritty, noir art style with high-contrast black and white inks. In the foreground, a detective in a trench coat stands under a flickering streetlamp, rain soaking his shoulders. In the background, the neon sign of a desolate bar reflects in a puddle. A caption box at the top reads "The city was a tough place to keep secrets." The lighting is harsh, creating a dramatic, somber mood. Landscape.」

这一套 prompt 模板学下来,你大概就能掌握使用 Nano Banana 的精髓了。

不过,用户在使用中还有其他困扰,比如「在对已有图像进行编辑时,模型往往会返回一张一模一样的图像。」

另外有人指出了 Nano Banana 在编辑时存在的更多问题,「它在一致性上表现不如 Qwen 和 Kontext Pro,也不够稳定,特别是在持续对话过程中。对于文本转图像,直接用 Imagen 会更好且更可控。」

大家在使用 Nano Banana 的过程中有哪些独到的心得与技巧?欢迎在评论区分享出来。

特别声明:以上内容(如有图片或视频亦包括在内)为自媒体平台“网易号”用户上传并发布,本平台仅提供信息存储服务。

Notice: The content above (including the pictures and videos if any) is uploaded and posted by a user of NetEase Hao, which is a social media platform and only provides information storage services.

相关推荐
热点推荐
编外人员“清退”开始,城管协管、辅警、护士教师都在其中

编外人员“清退”开始,城管协管、辅警、护士教师都在其中

巢客HOME
2026-05-14 05:55:06
A股:大家系好安全带了,不出意外的话,A股或将再次重演黑色星期四?

A股:大家系好安全带了,不出意外的话,A股或将再次重演黑色星期四?

趋势清风侠
2026-05-14 12:37:47
终于知道大爷大妈经常跑银行的原因了!网友:后来我辞职了!

终于知道大爷大妈经常跑银行的原因了!网友:后来我辞职了!

另子维爱读史
2026-05-13 07:40:13
重磅达成协议!巴西后腰同意加盟曼联,周薪10万英镑敲定

重磅达成协议!巴西后腰同意加盟曼联,周薪10万英镑敲定

夜白侃球
2026-05-14 09:01:43
白鹿迎来全网骂潮,是因为她踩中了,中国观众最讨厌的3个雷区

白鹿迎来全网骂潮,是因为她踩中了,中国观众最讨厌的3个雷区

阿凫爱吐槽
2026-05-14 02:15:54
欠了快400亿,骂了整十年,华西村硬是靠一笔意外投资活过来了

欠了快400亿,骂了整十年,华西村硬是靠一笔意外投资活过来了

小莜读史
2026-05-07 19:10:59
抛妻弃子的他却得齐人之福,真实版的孽债 | 二湘空间

抛妻弃子的他却得齐人之福,真实版的孽债 | 二湘空间

二湘空间
2026-05-14 07:36:12
乾隆 “翻车” 名画刷屏!

乾隆 “翻车” 名画刷屏!

中国艺术家
2026-05-13 05:23:16
全国物业费收缴率多年下滑,多地倡议党员先缴物业费引争议

全国物业费收缴率多年下滑,多地倡议党员先缴物业费引争议

南方都市报
2026-05-14 11:15:55
特斯拉中国官宣全新优惠,5.59 万即可提 Model 3 了!

特斯拉中国官宣全新优惠,5.59 万即可提 Model 3 了!

XCiOS俱乐部
2026-05-13 14:22:27
约0.01飞米!中国科学家重要发现,将改写教科书

约0.01飞米!中国科学家重要发现,将改写教科书

上观新闻
2026-05-14 06:48:04
玥儿关注粉丝突破5.1万,18位大S家人被关注,小杨阿姨开心露面

玥儿关注粉丝突破5.1万,18位大S家人被关注,小杨阿姨开心露面

素素娱乐
2026-05-13 07:06:14
汕头市委书记祝贺《给阿嬷的情书》票房口碑双丰收:让更多人了解潮汕文化

汕头市委书记祝贺《给阿嬷的情书》票房口碑双丰收:让更多人了解潮汕文化

澎湃新闻
2026-05-14 14:10:26
一位知青后代的困惑:抛弃他的生母就在身边,他要不要跟妈妈相认

一位知青后代的困惑:抛弃他的生母就在身边,他要不要跟妈妈相认

草根情感故事茶社
2026-05-13 11:02:42
1.5%!史上最低概率!状元签是NBA内定吗?

1.5%!史上最低概率!状元签是NBA内定吗?

篮球教学论坛
2026-05-14 13:26:07
河南信阳警方:一小轿车发生剐蹭后失控致1死5伤,司机涉嫌醉驾

河南信阳警方:一小轿车发生剐蹭后失控致1死5伤,司机涉嫌醉驾

澎湃新闻
2026-05-14 02:24:09
这菜不起眼,却是“补钾高手”!夏天一周吃2次,强骨骼、解疲劳

这菜不起眼,却是“补钾高手”!夏天一周吃2次,强骨骼、解疲劳

阿龙美食记
2026-05-12 15:57:38
戛纳红毯全员落败!巩俐低调亮相,被评又壮又矮?气场却断层第一

戛纳红毯全员落败!巩俐低调亮相,被评又壮又矮?气场却断层第一

看尽落尘花q
2026-05-14 07:10:43
心动了?巴克利:斯特鲁斯长得非常帅,我都不敢直视他的眼睛

心动了?巴克利:斯特鲁斯长得非常帅,我都不敢直视他的眼睛

懂球帝
2026-05-14 12:58:21
36 岁离婚,52 岁坐牢,59 岁儿子离世,现在62 岁一个人孤苦伶仃

36 岁离婚,52 岁坐牢,59 岁儿子离世,现在62 岁一个人孤苦伶仃

凡知
2026-05-14 10:43:37
2026-05-14 15:00:49
机器之心Pro incentive-icons
机器之心Pro
专业的人工智能媒体
12993文章数 142648关注度
往期回顾 全部

科技要闻

马斯克说会谈很顺利 黄仁勋点赞 库克比耶

头条要闻

媒体:中美元首会晤 世界吃下一颗“定心丸”

头条要闻

媒体:中美元首会晤 世界吃下一颗“定心丸”

体育要闻

登海报!哈登30+8+6创多项纪录 第8次赢天王山

娱乐要闻

肖战提名金海燕奖,这一步走得太稳

财经要闻

习近平同美国总统特朗普会谈

汽车要闻

C级纯电轿跑 吉利银河"TT"申报图来了

态度原创

艺术
房产
教育
家居
公开课

艺术要闻

充满光感的花卉油画 | 亚历山大·沙巴德伊

房产要闻

海南楼市新政要出!拟调公积金贷款额度,最高可贷168万!

教育要闻

牛剑双收、拒绝“标准模版”的成都孩子长什么样?来这所学校看看

家居要闻

精神奢享 对话塔尖需求

公开课

李玫瑾:为什么性格比能力更重要?

无障碍浏览 进入关怀版