insert_image
Inserts local images into HWPX documents with specified dimensions and alt text, automatically including them in the document package.
Instructions
로컬 이미지를 문서에 삽입하고 패키지에 포함합니다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| alt_text | No | ||
| height | No | ||
| path | Yes | 워크스페이스 상대 이미지 경로 | |
| width | No |
Input Schema (JSON Schema)
{
"properties": {
"alt_text": {
"type": "string"
},
"height": {
"minimum": 1,
"type": "integer"
},
"path": {
"description": "워크스페이스 상대 이미지 경로",
"type": "string"
},
"width": {
"minimum": 1,
"type": "integer"
}
},
"required": [
"path"
],
"type": "object"
}