下载Aspose.Words .dll http://pan.baidu.com/s/1c8659k
在vs2010中新建窗体应用程序,命名为 wordtopdf
添加Aspose.Words .dll 引用
编写代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Linq;
using System.Windows.Forms;
using System.IO;
using Aspose.Words; namespace wordtopdf
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
} private void button1_Click(object sender, EventArgs e)
{
//读取doc文档
Document doc = new Document(@"C:\Users\Administrator\Desktop\123\123.doc");
//保存为PDF文件,此处的SaveFormat支持很多种格式,如图片,epub,rtf 等等
doc.Save(@"C:\Users\Administrator\Desktop\temp.pdf", SaveFormat.Pdf);
}
}
}
点击生成wordtopdf
其中遇到以下错误
原来是框架(.NET Framework 4 Client Profile)不合适,故换一种框架(点击项目---wordtopdf属性---目标框架---选择.NET Framework 4)再次运行没有错误
运行效果: