Install in seconds
Install this skill
Copy the command and run it in your terminal. You can review the source before installing.
terminal
git clone https://github.com/CoderWanFeng/python-office

Works with Git. The repository opens in your current directory.

🖼️
AutomationPython

Image Downloader

by CoderWanFeng

Downloads an image from a given URL and saves it locally. Use when you need to fetch and store images from the web.

1.3K stars297 forksAdded 2026/07/20
officepippypipythonweixin

Documentation

README

down4img Skill

下载图片并保存到指定路径

功能描述

从给定的 URL 下载图片,并将其保存到指定路径。

所属分类

office/skills/image/down4img/

调用方式

from office.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 office.skills.image import down4img
down4img(url='https://example.com/photo.jpg')

原始函数

office.api.image.down4img