🖼️
AutomationPython

Ppt To Image

by CoderWanFeng

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

1.3K stars301 forkson CoderWanFeng/python-officeAdded 2026/08/12Repository updated 2026/08/04
officepippypipythonweixin
Install in seconds
Install Ppt To Image
Copy Ppt To 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/ppt/ppt2img ~/.claude/skills/ppt2img

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/ppt/ppt2img/SKILL.md in CoderWanFeng/python-office
Installs to
~/.claude/skills/ppt2img
Collection
One of 50 skills cataloged from this repository
Category
Automation1523 skills

What Ppt To Image does

Ppt To Image converts PowerPoint files into images, either as separate slides or merged into one long image. Use it when you need PPT screenshots, slide images, or a combined long screenshot.

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

Documentation

README

ppt2img Skill

将 PPT 转换为图片,可以转为长图

功能描述

将 PowerPoint 文件转换为图片,支持合并为一张长图或多张图片。

所属分类

office/skills/ppt/ppt2img/

调用方式

from skills.ppt import ppt2img

ppt2img(
    input_path='./test.pptx',
    output_path='./',
    merge=False
)

参数说明

参数 类型 必填 默认值 说明
input_path str - 存放 PPT 的位置。转换单个文件可以写文件路径,转换文件夹可以写文件夹路径
output_path str './' 结果图片的存储位置
merge bool False True 转为 1 张图片,False 转为多张图片

返回值

None

使用示例

from skills.ppt import ppt2img
# 转为多张图片
ppt2img(input_path='./presentation.pptx', output_path='./images/')
# 转为一张长图
ppt2img(input_path='./presentation.pptx', merge=True)

原始函数

office.api.ppt.ppt2img

Frequently asked about Ppt To Image

  • What else does CoderWanFeng publish alongside Ppt To Image?

    Ppt To 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 Ppt To 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 Ppt To Image compare to other Automation skills?

    Ppt To Image ranks #660 by stars among the 1523 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 Ppt To Image against them. Open each page to compare what they document and how they install.