style_transfer
Apply artistic styles from one image to another using Google's Gemini 2.5 Flash Image technology, with optional prompt guidance for customized results.
Instructions
Transfer style from a style image to a base image, guided by an optional prompt.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
baseImage | Yes | ||
prompt | No | Optional additional instruction for the style transfer. | |
saveToFilePath | No | Optional path to save the output | |
styleImage | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"baseImage": {
"additionalProperties": false,
"properties": {
"dataBase64": {
"type": "string"
},
"mimeType": {
"type": "string"
},
"path": {
"type": "string"
}
},
"type": "object"
},
"prompt": {
"description": "Optional additional instruction for the style transfer.",
"type": "string"
},
"saveToFilePath": {
"description": "Optional path to save the output",
"type": "string"
},
"styleImage": {
"additionalProperties": false,
"properties": {
"dataBase64": {
"type": "string"
},
"mimeType": {
"type": "string"
},
"path": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"baseImage",
"styleImage"
],
"type": "object"
}