base64_encode_image
Convert images to Base64 encoded strings for integration into web applications or embedding in HTML/CSS using the specified image file path.
Instructions
将图片转换为Base64编码
Args:
image_path: 图片文件路径
Returns:
Base64编码结果
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"image_path": {
"title": "Image Path",
"type": "string"
}
},
"required": [
"image_path"
],
"title": "base64_encode_imageArguments",
"type": "object"
}