2

我正在使用 UNOCONV 将 pptx 文件转换为 pdf。它工作得很好,但它会在顶部打印幻灯片的名称,我还没有找到修复它的方法。

你有什么建议?

这是我正在使用的代码:

# requirements
# sudo apt install unoconv
# pip install tqdm
# pip install glob
import glob
import tqdm
path = "<INPUT FOLDER>"
extension = "pptx"
files = [f for f in glob.glob(path + "/**/*.{}".format(extension), recursive=True)]
for f in tqdm.tqdm(files):
    command = "unoconv -f pdf \"{}\"".format(f)
    os.system(command)
4

0 回答 0