download_image
Download AI-generated images from Pollinations.ai to your local device by providing the image URL and specifying the output path. Simplify saving and accessing AI-created visuals.
Instructions
下载Pollinations.ai生成的图像到本地文件
Input Schema
Name | Required | Description | Default |
---|---|---|---|
output_path | No | 保存图像的路径(包括文件名) | image.jpg |
url | Yes | 要下载的图像URL |
Input Schema (JSON Schema)
{
"properties": {
"output_path": {
"default": "image.jpg",
"description": "保存图像的路径(包括文件名)",
"type": "string"
},
"url": {
"description": "要下载的图像URL",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}