---
name: Image Downloader
slug: image-downloader
category: Automation
description: Downloads an image from a given URL and saves it locally. Use when you need to fetch and store images from the web.
github: "https://github.com/CoderWanFeng/python-office/tree/develop/skills/image/down4img"
language: Python
stars: 1331
forks: 297
install: "git clone https://github.com/CoderWanFeng/python-office"
added: 2026-07-20T06:48:46.189Z
last_synced: 2026-07-28T07:00:51.982Z
canonical_url: "https://dirskills.com/skills/image-downloader"
---

# Image Downloader

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

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

## README

# down4img Skill

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

## 功能描述

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

## 所属分类

`office/skills/image/down4img/`

## 调用方式

```python
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`

## 使用示例

```python
from office.skills.image import down4img
down4img(url='https://example.com/photo.jpg')
```

## 原始函数

`office.api.image.down4img`
