python 里有没有什么库 word 转 pdf,能达到 documents4j 一样的效果?
1
iewad Jan 19, 2021
unoconv
|
2
omph Jan 19, 2021
[使用 pypandoc 转换各类文档]( http://yuanjun.farbox.com/python/333)
|
3
RedBeanIce Jan 19, 2021
libreoffice
|
4
booscopy Jan 19, 2021
pipx install docx2pdf
------------------------------------------ from docx2pdf import convert convert("input.docx") convert("input.docx", "output.pdf") convert("my_docx_folder/") ------------------------------------------ pypi.org/project/docx2pdf |
5
hellhyzcy66 Jan 21, 2021 via iPhone
装了 office 自带 pdf 打印机,或者自己装 pdf 打印机
|
6
mn4940128 Jan 28, 2021
同推荐 libreoffice 可以 headless,部署到云服务贼舒服
|
7
ChangHaoWei Feb 18, 2021
pdf 转 word 有没有这样的需求,想做个 APP
|