用Word写博客园文章

本文介绍了一种将Word文档转换为PDF格式的方法,并提供了一个具体的C#代码示例。通过该方法,用户能够指定转换范围,例如从文档的特定页面开始直至结束。此过程涉及到Word应用程序的初始化、文档的加载及最终的PDF格式输出。

 

http://www.cnblogs.com/dunitian/services/metablogapi.aspx

 

效果如下:

啦啦啦啦啦啦我是卖报的小行家

/// <summary>

/// Word转换成PDF

/// </summary>

/// <param name="inputPath">载入路径</param>

/// <param name="outputPath">保存路径</param>

/// <param name="startPage">初始页码(默认为第一页[0]</param>

/// <param name="endPage">结束页码(默认为最后一页)</param>

public static bool WordToPDF(string inputPath, string outputPath, int startPage = 0, int endPage = 0)

{

bool b = true;

 

#region初始化

//初始化一个application

Application wordApplication = new Application();

//初始化一个document

Document wordDocument = null;

#endregion

 

#region参数设置~~我去累死宝宝了~~

//word路径

object wordPath = Path.GetFullPath(inputPath);

 

//输出路径

string pdfPath = Path.GetFullPath(outputPath);

 

//导出格式为PDF

WdExportFormat wdExportFormat = WdExportFormat.wdExportFormatPDF;

 

//导出大文件

WdExportOptimizeFor wdExportOptimizeFor = WdExportOptimizeFor.wdExportOptimizeForPrint;

 

//导出整个文档

WdExportRange wdExportRange = WdExportRange.wdExportAllDocument;

 

//开始页码

int startIndex = startPage;

 

//结束页码

int endIndex = endPage;

 

//导出不带标记的文档(这个可以改)

WdExportItem wdExportItem = WdExportItem.wdExportDocumentContent;

 

//包含word属性

bool includeDocProps = true;

 

//导出书签

WdExportCreateBookmarks paramCreateBookmarks = WdExportCreateBookmarks.wdExportCreateWordBookmarks;

 

//默认值

object paramMissing = Type.Missing;

 

#endregion

 

#region转换

try

{

//打开word

wordDocument = wordApplication.Documents.Open(ref wordPath, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing, ref paramMissing);

//转换成指定格式

if (wordDocument != null)

{

wordDocument.ExportAsFixedFormat(pdfPath, wdExportFormat, false, wdExportOptimizeFor, wdExportRange, startIndex, endIndex, wdExportItem, includeDocProps, true, paramCreateBookmarks, true, true, false, ref paramMissing);

}

}

catch (Exception ex)

{

b = false;

}

finally

{

//关闭

if (wordDocument != null)

{

wordDocument.Close(ref paramMissing, ref paramMissing, ref paramMissing);

wordDocument = null;

}

 

//退出

if (wordApplication != null)

{

wordApplication.Quit(ref paramMissing, ref paramMissing, ref paramMissing);

wordApplication = null;

}

}

 

return b;

#endregion

}

转载于:https://www.cnblogs.com/dunitian/p/5041062.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值