Install
openclaw skills install word-to-pdfConvert Word documents (.docx) to PDF using Python's reportlab library. Supports Chinese characters, emojis, and proper formatting preservation. Usage: word-to-pdf <input_file> [output_file]
openclaw skills install word-to-pdf将 Microsoft Word 文档(.docx)转换为 PDF 格式,支持:
pip install reportlab python-docx
word-to-pdf input.docx output.pdf
input_file - Word 文档路径(必填)output_file - PDF 输出路径(可选,默认与输入文件同名)# 转换文档
word-to-pdf document.docx document.pdf
# 转换到指定路径
word-to-pdf input.docx C:\output\converted.pdf
python-docx 读取 Word 文档内容reportlab 生成 PDF 文件如果出现乱码,请确保系统中安装了中文字体:
如果提示缺少依赖,运行:
pip install --upgrade reportlab python-docx
MIT License