https://ai.google.dev/gemini-api/docs/image-generation

https://colab.research.google.com/github/google-gemini/cookbook/blob/main/quickstarts/Image_out.ipynb

Image generation with Gemini (aka Nano Banana)

Gemini can generate and process images conversationally. You can prompt Gemini with text, images, or a combination of both allowing you to create, edit, and iterate on visuals with unprecedented control:

All generated images include a SynthID watermark.

Image generation (text-to-image)

The following code demonstrates how to generate an image based on a descriptive prompt.

PythonJavaScriptGoREST

from google import genai
from google.genai import types
from PIL import Image
from io import BytesIO

client = genai.Client()

prompt = (
    "Create a picture of a nano banana dish in a fancy restaurant with a Gemini theme"
)

response = client.models.generate_content(
    model="gemini-2.5-flash-image-preview",
    contents=[prompt],
)

for part in response.candidates[0].content.parts:
    if part.text is not None:
        print(part.text)
    elif part.inline_data is not None:
        image = Image.open(BytesIO(part.inline_data.data))
        image.save("generated_image.png")

AI-generated image of a nano banana dish

AI-generated image of a nano banana dish in a Gemini-themed restaurant

Image editing (text-and-image-to-image)

Reminder: Make sure you have the necessary rights to any images you upload. Don't generate content that infringe on others' rights, including videos or images that deceive, harass, or harm. Your use of this generative AI service is subject to our Prohibited Use Policy.

The following example demonstrates uploading base64 encoded images. For multiple images, larger payloads, and supported MIME types, check the Image understanding page.