为了让大家用好nano banana,谷歌发布了一份官方提示词教程

B站影视 港台电影 2025-09-04 11:38 2

摘要:基于nano banana(Gemini 2.5 Flash Image),这6套Prompt模板覆盖了写实、贴纸、文字、产品、留白与分镜,直接套用就能高质量生图!

谷歌为了帮助大家快速上手nano banana,官方发布了一套最强Prompt模板。

甭管你暂时是否理解为什么这样写,先收藏起来试着套模板就对了!

其中的关键是,你要像讲故事一样写场景。

基于nano banana(Gemini 2.5 Flash Image),这6套Prompt模板覆盖了写实、贴纸、文字、产品、留白与分镜,直接套用就能高质量生图!

01写实摄影

写实感强的照片,是离不开摄影师的精心巧思的。

要生成写实感强的图像,你得像摄影师一样思考。

你需要考虑机位、镜头类型、光线、细节。

将这些元素加入Prompt后,会引导模型朝更逼真的效果靠近。

即使你不是专业摄影师,只要按照自己的理解多尝试,也大概率会比未说明这些关键要素而直接生成的图片的效果要好。

示例模板:

在[环境]中设置的[被摄体]、[动作或表情]的逼真[拍摄类型]。场景被【灯光描述】照亮,营造出【心情】氛围。使用 [相机/镜头细节] 拍摄,强调 [关键纹理和细节]。图像应采用 [纵横比] 格式。

模板大意:

一张写实风格的[镜头类型],[主体],[动作或表情],场景设定在[环境]。 画面由[光线描述]照明,营造出[情绪]氛围。 使用[相机/镜头参数]拍摄,突出[关键材质与细节]。 图像应为[纵横比]格式。

示例提示:

一位年长的日本陶艺家的逼真特写肖像,有着深邃的、被太阳蚀刻的皱纹和温暖、会心的微笑。他正在仔细检查一个刚上釉的茶碗。场景是他质朴的、阳光普照的工作室。场景被柔和的黄金时段光线从窗户照射进来,突出了粘土的细腻纹理。使用 85 毫米人像镜头拍摄,产生柔和、模糊的背景(散景)。整体情绪宁静而精湛。垂直纵向。

提示大意:

一张写实风格的特写人像:一位日本老陶艺家,脸上被岁月与阳光刻下的深深皱纹,露出温暖而睿智的微笑。 他正仔细端详一个刚上釉的茶碗。 场景位于他质朴、阳光充足的工作室。 柔和的黄金时刻光线自窗外倾泻而入,凸显陶土的细腻纹理。 使用85mm人像镜头拍摄,带来柔和的背景虚化(bokeh)。 整体氛围宁静而老练。 竖版人像构图。

生成的图片:

一张写实风格的日本老陶艺家特写人像

调用API生图示例Python代码:

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

注意,上述代码需要你在第11行的contents中输入Prompt,在第22行的image.save中输入你要保存时取的文件名。

后续其他调用API生图的代码仅需要修改这两处即可。

03插图与贴纸

在生成贴纸、图标、插图、项目素材这类图片时,你需要先把风格说清楚。

如果有其他特殊需求,比如需要白底的话,你得明确在Prompt中写出。

示例模板:

[主题]的[风格]贴纸,具有[主要特征]和[调色板]。设计应具有 [线条样式] 和 [阴影样式]。背景必须是白色的。

模板大意:

一张[风格]的[主体]贴纸,具有[关键特征],采用[配色]。设计应当使用[线条风格]与[明暗/上色风格]。背景必须为白色。

示例提示:

卡哇伊风格的贴纸,上面有一只戴着小竹帽的快乐小熊猫。它正在咀嚼一片绿色的竹叶。该设计具有大胆、简洁的轮廓、简单的卡通阴影和充满活力的调色板。背景必须是白色的。

提示大意:

一张可爱风(kawaii)贴纸:一只开心的小熊猫戴着迷你竹叶帽,正咀嚼一片绿色竹叶。设计使用粗壮、干净的描边,简单的赛璐璐上色,配色鲜艳。背景必须为白色。

生成的图片:

一张可爱风(kawaii)的小熊猫贴纸

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

nano banana在文本渲染这项任务上的表现是格外瞩目的。

你只需要把文字内容、字体风格(用描述性的词描述)、整体设计说明白,就可以产出质量很好的图片了。

示例模板:

为 [品牌/概念] 创建一个 [图像类型],文本为“[要渲染的文本]”,采用 [字体样式]。设计应为 [样式描述],并带有 [配色方案]。

模板大意:

为[品牌/概念]创建一张[图像类型],其中包含文本「[要渲染的文本]」,使用[字体风格]。 设计应为[风格描述],并采用[配色方案]。

示例提示:

为一家名为“The Daily Grind”的咖啡店创建一个现代、简约的标志。文本应采用干净、粗体、无衬线字体。设计应采用与文本无缝集成的简单、风格化的咖啡豆图标。配色方案为黑色和白色。

提示大意:

为一家名为「The Daily Grind」的咖啡店设计一个现代、极简的Logo。 文字使用干净、粗体的无衬线字体。 设计带有一个简洁、风格化的咖啡豆图标,并与文字无缝融合。 配色为黑白。

生成的图片:

为一家名为「The Daily Grind」的咖啡店生成的现代极简风Logo

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

为品牌打广告时,打造一个干净、专业的产品照通常是一个比较不错的选择。

商业感=干净背景+可控布光+展示卖点的机位。

示例模板:

[背景表面/描述] 上 [商品描述] 的高分辨率演播室照明产品照片。照明是 [照明设置,例如三点柔光箱设置] 到 [照明目的]。摄像机角度是[角度类型],以展示[特定特征]。超逼真,专注于[关键细节]。[纵横比]。

模板大意:

一张高分辨率、影棚布光的[产品描述]产品照,置于[背景表面/描述]上。灯光为[布光设置,如三点柔光箱布光],用于[照明目的]。机位为[角度类型],以展示[特定卖点]。超写实,对[关键细节]进行锐利对焦。[纵横比]。

示例提示:

一张高分辨率、工作室照明的产品照片,展示了一个哑光黑色的极简主义陶瓷咖啡杯,呈现在抛光的混凝土表面上。照明采用三点柔光箱设置,旨在创建柔和、漫射的高光并消除刺眼的阴影。摄像机角度是略微升高的 45 度镜头,以展示其简洁的线条。超逼真,重点关注咖啡中升起的蒸汽。方形图像。

提示大意:

一张高分辨率、影棚布光的产品照:一只极简风的消光黑陶瓷咖啡杯,摆放在抛光的混凝土表面上。灯光为三点柔光箱布光,营造柔和的高光并消除硬阴影。机位为略抬高的 45 度角,凸显其干净的线条。超写实,对咖啡升起的蒸汽进行锐利对焦。方形图像。

生成的图片:

一张高分辨率、影棚布光的极简黑色陶瓷咖啡杯产品照

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.show06极简主义与留白设计

极简主义留白设计,非常适合为网站、演示或营销素材创建背景,方便后面再在图片上叠加文字。

示例模板:

极简主义构图,以单个 [主体] 位于画面的 [右下/左上/等] 中。背景是一块广阔、空旷的[彩色]画布,创造了大量的负空间。柔和、微妙的灯光。[纵横比]。

模板大意:

一幅极简构图,画面中只有一个[主体],位于画面[右下角/左上角等]。背景是一整片空旷的[颜色]纯色画布,创造显著留白。柔和、克制的光线。[纵横比]。

示例提示:

极简主义的构图,在画面的右下角有一片精致的红枫叶。背景是一块广阔、空旷的灰白色画布,为文本创造了大量的负空间。左上角柔和的漫射照明。方形图像。

提示大意:

一幅极简构图:一片精致的红色枫叶位于画面右下角。背景是一整片空旷的米白色纯色画布,为文字留出大量留白。来自左上方的柔和、漫射光。方形图像。

生成的图片:

一幅极简构图:一片精致的红色枫叶

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.show07漫画

你可以通过聚焦清晰的场景描述,一格一格地创作吸引人的视觉叙事。

这种方式非常适合做漫画、故事板等图片。

示例模板:

[艺术风格]风格的单个漫画书面板。在前景中,[角色描述和动作]。在背景中,[设置细节]。面板有一个带有文本“[文本]”的[对话/标题框]。灯光营造出一种[情绪]氛围。[纵横比]。

模板大意:

一格[艺术风格]的漫画分镜。 前景中,[人物描述与动作]。 背景中,[环境细节]。 画面包含一个[对白/旁白框],内容为「[文本]」。 用光营造[情绪]氛围。 [纵横比]。

示例提示:

一个带有坚韧不拔的黑色艺术风格的单一漫画书面板,带有高对比度的黑白墨水。前景中,一名身穿风衣的侦探站在闪烁的路灯下,雨水浸湿了他的肩膀。在背景中,一家荒凉酒吧的霓虹灯倒映在水坑中。顶部的标题框上写着“这座城市是一个很难保守秘密的地方”。灯光刺眼,营造出一种戏剧性、阴郁的气氛。 景观。

提示大意:

一格粗粝的黑色电影风漫画,高反差黑白墨线。前景中,一位穿风衣的侦探站在闪烁的路灯下,雨水打湿了他的双肩。背景中,一家荒凉酒吧的霓虹招牌倒映在水坑里。顶部的旁白框写着:「在这座城市,想守住秘密并不容易。」用光强硬,营造戏剧而沉郁的氛围。横向画幅。

生成的图片:

一格粗粝的黑色电影风漫画分镜

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

有了以上谷歌官方的强大模板,人人都可以自己创造出高质量图片了!

来源:晚晚的星河日记一点号

相关推荐