๐ Try It Now!
๐ Basic Generation Examples
๐ค Portrait
๐๏ธ Landscape
๐จ Abstract Art
๐ธ Product Photo
โ๏ธ Image Editing Playground
Original
Edit Instructions
Result
Result will appear here
๐ฌ Multi-Image Composition Studio
Reference Images
Composed Result
Composed image will appear here
๐งช Prompt Engineering Lab
Build Your Prompt
professional businesswoman smiling confidently modern office natural lighting photorealistic
Live Preview
๐ฎ Interactive Playground
Parameters
// GET Request Example
const imageUrl = "/api/nanobanana/image/512/512?prompt=wizard%20in%20purple%20robes%20holding%20crystal%20staff%20photorealistic";
// Use in HTML
<img src="${imageUrl}" alt="Generated image" />
// Or fetch and process
fetch(imageUrl)
.then(response => response.blob())
.then(blob => {
const url = URL.createObjectURL(blob);
document.getElementById('myImage').src = url;
});Live Preview
Click Generate to see result