image_to_image
Transform existing images using text prompts to create new variations. Upload 1-9 images and describe desired changes to generate modified versions with AI.
Instructions
Transform existing images based on a text prompt using Nanana AI. This operation typically takes 15-30 seconds to complete. The tool will wait for transformation to finish and return the final image URL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| imageUrls | Yes | Array of image URLs to transform (1-9 images) | |
| prompt | Yes | The text prompt describing how to transform the images |
Input Schema (JSON Schema)
{
"properties": {
"imageUrls": {
"description": "Array of image URLs to transform (1-9 images)",
"items": {
"type": "string"
},
"maxItems": 9,
"minItems": 1,
"type": "array"
},
"prompt": {
"description": "The text prompt describing how to transform the images",
"type": "string"
}
},
"required": [
"imageUrls",
"prompt"
],
"type": "object"
}