Nano Banana 2 Lite はGoogleの最速かつ最も手頃な画像モデル(gemini-3.1-flash-lite-image)ですが、実際にどこで動かすべきでしょうか?
There are three solid paths: Google's own AI apps, a developer API, and the OpenArt all-in-one creative platform. Here's how to use each.
要点
- Nano Banana 2 Liteは、Googleで最速かつ最も安価な画像モデルです(gemini-3.1-flash-lite-image)。
- Easiest start: the Gemini app's Flash-Lite mode or Google AI Studio, no code needed.
- Developers can call it through the Gemini API for about $0.034 per 1K image.
- OpenArt はオールインワンの拠点として最適。数多くのトップモデルを1つのプランで使えます。
- OpenArtではさらに、モデルごとに4件の同時生成、編集、アップスケールも利用できます。
Option 1: Google's Gemini app and AI Studio
Nano Banana 2 Liteを最も手軽に試すには、Google自身のアプリを使うのがおすすめです。
GeminiアプリでFlash-Liteモードに切り替え、プロンプトを入力して生成するだけ。設定は一切不要です。ウェブでもモバイルでも、気軽に日常的な画像作成をするのに最も手軽な方法で、何かに本格的に取り組む前にモデルの実力を確かめるのにも最適です。
もう少しコントロールしたい場合は、Google AI Studioを開き、新しいプロンプトを開始して、gemini-3.1-flash-lite-imageモデルを選択してください。AI Studioはプロンプトを試したり、入力を調整したり、何かを作る前に結果をプレビューしたりするのに最適な場所で、生成されたコードをそのまま自分のプロジェクトにコピーできます。どちらも無料で試せるので、最初の一歩として自然な選択です。
Option 2: Plug into the Gemini API (technical setup)
アプリ、バッチ処理、自動パイプラインなど、プログラムから画像を生成するには、Gemini API経由でNano Banana 2 Liteを呼び出しましょう。
まず Google AI Studio で API キーを取得し、SDK をインストールします:
pip install google-genai
あとは数行のPythonで画像を生成するだけ:
from google import genai
client = genai.Client(api_key="YOUR_API_KEY")
response = client.models.generate_content(
model="gemini-3.1-flash-lite-image",
contents="A serene mountain lake at sunrise, soft morning light",
)
for part in response.candidates[0].content.parts:
if part.inline_data:
with open("output.png", "wb") as f:
f.write(part.inline_data.data)
1,000枚あたり約0.034ドルと、大量処理に向いたコスト効率です。最新のパラメーターや制限はGoogleのGemini API画像生成ドキュメントをご確認ください。この方法は、プロダクト機能、大量コンテンツ生成、その場で画像を作成する必要があるあらゆるワークフローに最適です。
オプション3:OpenArtで使う(最高のオールインワン)
GoogleのツールはNano Banana 2 Lite単体で動かすには最適です。でも、ほとんどのクリエイターは1つのモデルだけに留まりません。そこでOpenArtが、それを最も生産的に使える場所として際立つのです。
OpenArtでの画像生成は、シンプルな3ステップで完了します。
モデルを選ぶ
OpenArtの画像ジェネレーターを開き、モデルメニューからNano Banana 2 Liteを選択したら、フォーマットを選びます。ReelsやShorts向けの縦型、フィード投稿向けの正方形、サムネイルやバナー向けのワイドスクリーンから選べます。
プロンプトを書きましょう。
Describe your subject, style, lighting, background, mood, and any in-image text you want, and upload reference images to fuse a character, product, or style into the shot.
生成して仕上げる。
Generate in near real time, then iterate in tight loops or open Edit Image for precise local changes, like swapping a background or fixing a label, before you download.
OpenArt also gives you more than a standalone generator:
多彩なモデル、一つのプラン:
Alongside Nano Banana 2 Lite, OpenArt gives you Nano Banana Pro, GPT Image 2, Recraft V4, and more under a single subscription, with no separate accounts or API bills to juggle. Prototype on Lite, then switch to a heavier model when a project needs it.
モデルごとに4つの生成を同時にキューへ:
Run up to four generations simultaneously for each model, so you explore variations in parallel instead of one at a time, a perfect match for Lite's fast, iterative style.
高度な編集とアップスケーリング:
Refine results with built-in post-generation editing tools, and upscale beyond Lite's native 1K output for crisp, high-resolution exports, the finishing step Google's raw model doesn't include.
Put together, that means you get Lite's speed and low cost plus everything you need to take an image from rough draft to final export, without leaving the platform.
Start using Nano Banana 2 Lite today
If you just want to dabble, the Gemini app is the fastest start; if you're building software, the Gemini API is the way in. But if you create regularly and want every top model, parallel generations, and pro editing in one place, OpenArt's AI画像生成 はNano Banana 2 Liteに最適な環境です。