🖼️
AutomationPython

Download Image

by CoderWanFeng

Download Image is an Automation skill for Claude Code, published by CoderWanFeng in python-office.

1.3K stars299 forkson CoderWanFeng/python-officeAdded 2026/07/20Repository updated 2026/08/04
officepippypipythonweixin
Install in seconds
Install Download Image
Copy Download Image into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/image/down4img ~/.claude/skills/down4img

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/CoderWanFeng/python-office.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
skills/image/down4img/SKILL.md in CoderWanFeng/python-office
Installs to
~/.claude/skills/down4img
Collection
One of 50 skills cataloged from this repository
Category
Automation2226 skills

What Download Image does

Download images from a given URL and save them to a local path. Use this when you need to fetch images from the web and store them on disk.

Download Image is cataloged under Automation on DirSkills. Download Image comes from a repository tagged office, pip, pypi, python and weixin.

Documentation

README

down4img Skill

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

功能描述

从给定的 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

Frequently asked about Download Image

  • What else does CoderWanFeng publish alongside Download Image?

    Download Image is one of 50 skills that DirSkills catalogs from CoderWanFeng/python-office, the repository it ships in. Its siblings there include Add Image Watermark, Add Line by Type and Add Text Watermark. Each one is a separate skill with its own page in this directory, installs the same way Download Image does, and is maintained by CoderWanFeng in that same repository. The rest of the collection is listed on the CoderWanFeng/python-office page.

  • How does Download Image compare to other Automation skills?

    Download Image ranks #658 by stars among the 2226 Automation skills in this catalog. The most-starred ones next to it are Autonomous Loops, Autonomous Agent Harness and Automation Audit Ops. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Download Image against them. Open each page to compare what they document and how they install.