从指定 URL 下载图片并保存到本地。当用户提到下载图片、抓图、图片下载、网络图片保存时使用。
67
80%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Low
Low-risk findings worth noting
下载图片并保存到指定路径
从给定的 URL 下载图片,并将其保存到指定路径。
office/skills/image/down4img/
from skills.image import down4img
down4img(
url='https://example.com/image.png',
output_path='./images',
output_name='my_image',
type='jpg'
)| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
url | str | 是 | - | 图片的 URL 地址 |
output_path | str | 否 | '.' | 保存图片的路径 |
output_name | str | 否 | 'down4img' | 保存图片时使用的文件名 |
type | str | 否 | 'jpg' | 图片的文件类型 |
None
from skills.image import down4img
down4img(url='https://example.com/photo.jpg')office.api.image.down4img
dd6fe56
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.