请各位帮忙,vc++中如何实现word 转PDF
最近看了一下office2003 word 和金山wps的api文档,其相似度应该不会低于98%。
wps的document提供:
void _Document::ExportPdf(LPCTSTR PdfFilePath, LPCTSTR UserPassword, LPCTSTR MasterPassword)
{
static BYTE parms[] =
VTS_BSTR VTS_BSTR VTS_BSTR;
InvokeHelper(0x1007, DISPATCH_METHOD, VT_EMPTY, NULL, parms,
PdfFilePath, UserPassword, MasterPassword);
}
所以在wps中可以直接导出为PDF文档。
office2003中就没次方法,请问各位能否不通过虚拟打印、Adobe Acrobat,word 直接生成PDF?
谢谢!