add_picture
Insert an image into a Microsoft Word document by specifying the file name, image path, and optional width. Simplifies document customization with direct integration.
Instructions
Add an image to a Word document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
image_path | Yes | ||
width | No |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"image_path": {
"title": "Image Path",
"type": "string"
},
"width": {
"default": null,
"title": "Width",
"type": "number"
}
},
"required": [
"filename",
"image_path"
],
"type": "object"
}