---
name: Txt To Pdf
slug: txt-to-pdf
category: Automation
description: Txt To Pdf converts .txt files into PDF documents. Use it when you need to turn a text file into a PDF for sharing or archiving.
github: "https://github.com/CoderWanFeng/python-office/tree/develop/skills/pdf/txt2pdf"
language: Python
stars: 1339
forks: 301
install: "npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/pdf/txt2pdf ~/.claude/skills/txt2pdf"
installs_to: ~/.claude/skills/txt2pdf
source_path: skills/pdf/txt2pdf/SKILL.md
collection_size: 50
category_size: 1523
collection_url: "https://dirskills.com/collections/CoderWanFeng/python-office"
added: 2026-08-12T04:43:09.492Z
last_synced: 2026-08-12T04:43:09.492Z
canonical_url: "https://dirskills.com/skills/txt-to-pdf"
---

# Txt To Pdf

Txt To Pdf converts .txt files into PDF documents. Use it when you need to turn a text file into a PDF for sharing or archiving.

**Install:**

```bash
npx degit https://github.com/CoderWanFeng/python-office/tree/develop/skills/pdf/txt2pdf ~/.claude/skills/txt2pdf
```

## README

# txt2pdf Skill

> 将文本文件转换为 PDF 文件

## 功能描述

将文本文件（.txt）转换为 PDF 格式。

## 所属分类

`office/skills/pdf/txt2pdf/`

## 调用方式

```python
from skills.pdf import txt2pdf

txt2pdf(
    input_file='./test.txt',
    output_file='./test.pdf'
)
```

## 参数说明

| 参数 | 类型 | 必填 | 默认值 | 说明 |
|------|------|------|--------|------|
| `input_file` | str | 否 | - | 文本文件路径 |
| `output_file` | str | 否 | `'txt2pdf.pdf'` | 输出 PDF 文件路径 |

## 返回值

`None`

## 使用示例

```python
from skills.pdf import txt2pdf
txt2pdf(input_file='./article.txt', output_file='./article.pdf')
```

## 视频教程

https://www.python4office.cn/python-office/popdf/%E8%AF%BE%E7%A8%8B/3-txt2pdf/

## 原始函数

`office.api.pdf.txt2pdf`
