2022-11-24 00:11:23
delphi 如何将word转换为pdf
使用vba来指定保存的文件格式为pdf,当然前提必须已安装ms office的pdf输出插件(默认应该有)
procedure tform1.btn1click(sender: tobject);
var
wdo,wdoc,wdocs : olevariant;
begin
wdo := createoleobject('word.application');
wdocs := wdo.documents;
wdoc := wdocs.open('d:\test.docx');
wdoc.exportasfixedformat(outputfilename:=
'd:\test.pdf', exportformat:=17);
//查word的宏帮助
{ openafterexport:='true', optimizefor:='wdexportoptimizeforprint', range:=
'wdexportalldocument', from:=1, to:=1, item:='wdexportdocumentcontent',
includedocprops:='true', keepirm:='true', createbookmarks:=
'wdexportcreatenobookmarks', docstructuretags:='true', bitmapmissingfonts:=
'true', useiso19005_1:='false'); }
end;
2017版电脑怎么将word文档转为pdf
如果你用2007版或以上的word软件、wps office系统,可将word文档另存pdf格式即可;
如果你用的是2003版或以下的word软件,请安装adobe acrobat xi pro软件,用adobe pdf打印机打印你要输出的内容,即可得到pdf格式文档。