2022-12-30 19:43:06
随着
pdf变得越来越受欢迎,更多的人希望用它来存储重要的文件,word文档也不例外。直接将word文档转换为pdf可以保证文件的安全。尤其是当有很多word文档需要放入pdf格式时,一个一个单独地进行转换显然是不得要领的。但是拥有
word批量转pdf工具后,这一生意就变得很容易。
在使用word批量转pdf工具的时候,只需要照搬几步就可以完成转换任务。首先,用户需要在andrews designs software中下载免费word batch converter,这是一款实用的多功能转换包,可以令你轻松进行word到pdf的转换。接着,用户需要安装下载的word batch converter,同时在antivirus toolbar绿色按钮中点击“setup”即可设置该程序,让转换程序在制定条件下运行,如拖入多个需要转换文件或多个文件夹作为要转换成pdf的文件。 最后,要做的只是点击just convert batch (microsoft word to pdf)按钮,就可完成转换任务了!
总之,word批量转pdf是非常便捷的,它可以帮助我们理睬地转换大量word文档到pdf格式,并且提供一个超快重易使用的利器,能让你最快地完成pdf文件的转换!
word批量转pdf
204
word documents can be converted to pdf in batches by using third-party applications such as adobe acrobat, oracle pdf generate, novapdf, copay pdf converter and nitro word to pdf. these applications offer users great levels of control over the conversion and customization settings, which allows them to quickly and efficiently convert large batches of word documents into pdf format.
word批量转pdf代码
批量从word转换成pdf的代码如下:
```python
import comtypes.client
import os
def doc2pdf(input,output):
word = comtypes.client.createobject('word.application')
doc = word.documents.open(input,readonly = 1)
doc.saveas(output, fileformat=17)
doc.close()
word.quit()
listdir = os.listdir(folder)
files = []
for l in listdir:
if l[-1] == 'c':
files.append(l)
for f in files:
doc_file = os.path.join(filefolder, f)
fpdf_file = doc_file[:-1] + 'f'
doc2pdf(doc_file, fpdf_file)
print('{}->{}'.format(doc_file,fpdf_file))
print('complete!')
```