本文适用于VS2013 项目中的Word转换为PDF、Excel转换为PDF、PPT转换为PDF

0.一种更加简单方便的方法


1.本页所用的方法在本机测试时基本不会出现问题,只是偶尔PPT转PDF失败,需要重新添加dll,但是在服务器环境就会出现各种错误,需要各种配置。

2.http://www.cnblogs.com/moonache/p/4991459.html 请参考此文,更简单实用。

1.添加Using


1.在后台添加using

  1. using Microsoft.Office.Interop.Word;
    using Microsoft.Office.Interop.Excel;
    using Microsoft.Office.Core;
    using Microsoft.Office.Interop.PowerPoint;

2.添加引用


1.添加引用

3.添加代码


1.在后台添加代码

  1. protected void Page_Load(object sender, EventArgs e)
    {
    string wordSource,wordTarget,excelSource,excelTarget,pptSource,pptTarget;
    wordSource = @"E:\FileDownload\Explorer\意向 0.3.docx";
    wordTarget = @"E:\FileDownload\Explorer\W2P.pdf";
    excelSource = @"E:\FileDownload\Explorer\xlsx.xlsx";
    excelTarget = @"E:\FileDownload\Explorer\E2P.pdf";
    pptSource = @"E:\FileDownload\Explorer\质量月活动1509.pptx";
    pptTarget = @"E:\FileDownload\Explorer\P2P.pdf"; WordToPdf(wordSource,wordTarget);
    ExcelToPdf(excelSource,excelTarget);
    PPTConvertToPDF(pptSource, pptTarget); } public static bool WordToPdf(string sourcePath, string targetPath)
    {
    bool result = false;
    WdExportFormat wdExportFormatPDF = WdExportFormat.wdExportFormatPDF;//转换格式1.wdExportFormatPDF转换成pdf格式 2.wdExportFormatXPS转换成xps格式
    object missing = Type.Missing;
    Microsoft.Office.Interop.Word.ApplicationClass applicationClass = null;
    Document document = null;
    try
    {
    applicationClass = new Microsoft.Office.Interop.Word.ApplicationClass();
    object inputfileName = sourcePath;//需要转格式的文件路径
    string outputFileName = targetPath;//转换完成后PDF或XPS文件的路径和文件名名称
    WdExportFormat exportFormat = wdExportFormatPDF;//导出文件所使用的格式
    bool openAfterExport = false;//转换完成后是否打开
    WdExportOptimizeFor wdExportOptimizeForPrint = WdExportOptimizeFor.wdExportOptimizeForPrint;//导出方式1.wdExportOptimizeForPrint针对打印进行导出,质量较高,生成的文件大小较大。2.wdExportOptimizeForOnScreen 针对屏幕显示进行导出,质量较差,生成的文件大小较小。
    WdExportRange wdExportAllDocument = WdExportRange.wdExportAllDocument;//导出全部内容(枚举)
    int from = ;//起始页码
    int to = ;//结束页码
    WdExportItem wdExportDocumentContent = WdExportItem.wdExportDocumentContent;//指定导出过程中是否只包含文本或包含文本的标记.1.wdExportDocumentContent:导出文件没有标记,2.导出文件有标记
    bool includeDocProps = true;//指定是否包含新导出的文件在文档属性
    bool keepIRM = true;//
    WdExportCreateBookmarks wdExportCreateWordBookmarks = WdExportCreateBookmarks.wdExportCreateWordBookmarks;//1.wdExportCreateNoBookmarks:不要在导出文件中创建书签,2.wdExportCreateHeadingBookmarks:标题和文本框导出的文件中创建一个书签,3.wdExportCreateWordBookmarks每个字的书签,其中包括除包含页眉和页脚中的所有书签导出的文件中创建一个书签。
    bool docStructureTags = true;
    bool bitmapMissingFonts = true;
    bool UseISO19005_1 = false;//生成的文档是否符合 ISO 19005-1 (PDF/A)
    document = applicationClass.Documents.Open(ref inputfileName, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing);
    if (document != null)
    {
    document.ExportAsFixedFormat(outputFileName, exportFormat, openAfterExport, wdExportOptimizeForPrint, wdExportAllDocument, from, to, wdExportDocumentContent, includeDocProps, keepIRM, wdExportCreateWordBookmarks, docStructureTags, bitmapMissingFonts, UseISO19005_1, ref missing);
    }
    result = true;
    }
    catch
    {
    result = false;
    }
    finally
    {
    if (document != null)
    {
    document.Close(ref missing, ref missing, ref missing);
    document = null;
    }
    if (applicationClass != null)
    {
    applicationClass.Quit(ref missing, ref missing, ref missing);
    applicationClass = null;
    }
    }
    return result;
    } public static bool ExcelToPdf(string sourcePath, string targetPath)
    {
    bool result = false;
    XlFixedFormatType xlTypePDF = XlFixedFormatType.xlTypePDF;//转换成pdf
    object missing = Type.Missing;
    Microsoft.Office.Interop.Excel.ApplicationClass applicationClass = null;
    Workbook workbook = null;
    try
    {
    applicationClass = new Microsoft.Office.Interop.Excel.ApplicationClass();
    string inputfileName = sourcePath;//需要转格式的文件路径
    string outputFileName = targetPath;//转换完成后PDF文件的路径和文件名名称
    XlFixedFormatType xlFixedFormatType = xlTypePDF;//导出文件所使用的格式
    XlFixedFormatQuality xlFixedFormatQuality = XlFixedFormatQuality.xlQualityStandard;//1.xlQualityStandard:质量标准,2.xlQualityMinimum;最低质量
    bool includeDocProperties = true;//如果设置为True,则忽略在发布时设置的任何打印区域。
    bool openAfterPublish = false;//发布后不打开
    workbook = applicationClass.Workbooks.Open(inputfileName, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing);
    if (workbook!=null)
    {
    workbook.ExportAsFixedFormat(xlFixedFormatType, outputFileName, xlFixedFormatQuality, includeDocProperties, openAfterPublish, missing, missing, missing, missing);
    }
    result = true;
    }
    catch
    {
    result = false;
    }
    finally
    {
    if (workbook != null)
    {
    workbook.Close(true, missing, missing);
    workbook = null;
    }
    if (applicationClass != null)
    {
    applicationClass.Quit();
    applicationClass = null;
    }
    }
    return result;
    } public static bool PPTConvertToPDF(string sourcePath, string targetPath)
    {
    bool result;
    PpSaveAsFileType ppSaveAsFileType = PpSaveAsFileType.ppSaveAsPDF;//转换成pdf
    object missing = Type.Missing;
    Microsoft.Office.Interop.PowerPoint.ApplicationClass application = null;
    Presentation persentation = null;
    try
    {
    application = new Microsoft.Office.Interop.PowerPoint.ApplicationClass();
    persentation = application.Presentations.Open(sourcePath, MsoTriState.msoTrue, MsoTriState.msoFalse, MsoTriState.msoFalse);
    if (persentation!=null)
    {
    persentation.SaveAs(targetPath, ppSaveAsFileType, MsoTriState.msoTrue);
    }
    result = true;
    }
    catch
    {
    result = false;
    }
    finally
    {
    if (persentation != null)
    {
    persentation.Close();
    persentation = null;
    }
    if (application != null)
    {
    application.Quit();
    application = null;
    }
    }
    return result;
    }

2.单独的Excel2PDF(Word2PDF同理,不过PPT2PDF就要采用上面的方法)


1.在后台添加using

using Microsoft.Office.Interop.Excel;
2.在项目中添加引用
3.添加如下代码
  1. public static bool ExcelToPdf(string sourcePath, string targetPath)
    {
    bool result = false;
    XlFixedFormatType xlTypePDF = XlFixedFormatType.xlTypePDF;//转换成pdf
    object missing = Type.Missing;
    Microsoft.Office.Interop.Excel.ApplicationClass applicationClass = null;
    Workbook workbook = null;
    try
    {
    applicationClass = new Microsoft.Office.Interop.Excel.ApplicationClass();
    string inputfileName = sourcePath;//需要转格式的文件路径
    string outputFileName = targetPath;//转换完成后PDF文件的路径和文件名名称
    XlFixedFormatType xlFixedFormatType = xlTypePDF;//导出文件所使用的格式
    XlFixedFormatQuality xlFixedFormatQuality = XlFixedFormatQuality.xlQualityStandard;//1.xlQualityStandard:质量标准,2.xlQualityMinimum;最低质量
    bool includeDocProperties = true;//如果设置为True,则忽略在发布时设置的任何打印区域。
    bool openAfterPublish = false;//发布后不打开
    workbook = applicationClass.Workbooks.Open(inputfileName, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing, missing);
    if (workbook!=null)
    {
    workbook.ExportAsFixedFormat(xlFixedFormatType, outputFileName, xlFixedFormatQuality, includeDocProperties, openAfterPublish, missing, missing, missing, missing);
    }
    result = true;
    }
    catch
    {
    result = false;
    }
    finally
    {
    if (workbook != null)
    {
    workbook.Close(true, missing, missing);
    workbook = null;
    }
    if (applicationClass != null)
    {
    applicationClass.Quit();
    applicationClass = null;
    }
    }
    return result;
    }


4.如果遇到”无法嵌入互操作类型“……”,请改用适用的接口“
选中项目中引入的dll,鼠标右键,选择属性,把“嵌入互操作类型”设置为False。
 

PS


1.我在具体项目中使用时发现方法一种引入的DLL可以重复引用(感觉就像引用了没效果一样),而且每次关闭VS2013后重新打开编译工程都失败,都必须再重新引用一次。侥幸PPT转PDF功能用不上,最后选择了方法二。

ASP.NET VS2013 Office 转 PDF的更多相关文章

  1. Asp.Net调用Office组件操作时的DCOM配置 (转)

    Asp.Net调用Office组件操作时的DCOM配置 http://blog.csdn.net/gz775/article/details/6447758 在项目中将数据导出为Excel格式时出现“ ...

  2. java操作office和pdf文件java读取word,excel和pdf文档内容

    在平常应用程序中,对office和pdf文档进行读取数据是比较常见的功能,尤其在很多web应用程序中.所以今天我们就简单来看一下Java对word.excel.pdf文件的读取.本篇博客只是讲解简单应 ...

  3. 记录libreoffice实现office转pdf(适用于windows、linux)

    由于目前的工作跟office打交道比较多,所以才有了此篇blog,需求是实现word转换pdf方便页面展示.之前lz采用的是jacob(仅支持windows)进行转换的,但是现在服务器改成linux显 ...

  4. Confluence 6 Office 和 PDF 文件

    插入一个文件到页面中是能够让你将有用的文件,电子表格,幻灯片或者其他可用的文件在你小组中进行分享的好方法. 针对所有的文件类型,你可以选择以链接方式插入一个文件.缩略图将会对文档的内容进行预览同时可以 ...

  5. openoffice+pdf2swf+FlexPaper在线显示office和pdf

    前提:本人的系统为Ubuntu 13.10 64位系统.本篇是我在配置好环境后一段时间写的,所以操作上可能会有也错误,因此仅供参考. 搜索在线显示office和pdf,最常见的方法就是把都转为swf, ...

  6. Aspose实现Office转PDF (ASP.NET)

    0.添加Aspose的DLL 1.可以直接去官网下载,不过默认是带水印的,如需去除水印可以购买 2.当然也可以在国内的一些下载站下载 3.将Aspose.Cells.dll.Aspose.Words. ...

  7. Asp.net与office web apps的整合

    其实网上有关office web app的整合已经有相关的文章了,典型的是如何整合Office Web Apps至自己开发的系统(一) 和如何整合Office Web Apps至自己开发的系统(二), ...

  8. 【译】Asp.net mvc 使用ITextSharp PDF to HTML (解决img标签问题)

    前言:因项目需求,需要将HTML代码转成PDF.大致上已经实现了,可以是发现使用ITextSharp(我现在的版本是5.5.9)的时候,img标签中的src只能跟绝对路径. 在百度上找了一个上午,有一 ...

  9. ASP.NET调用Office Com组件权限设置

    ASP.NET在调用Office Com组件时,经常会出现权限限制的问题,而出现如下错误: 现通过以下几步设置,可解决上述问题:(1)64位系统中,请在IIS应用程序池集成模式中应启用调用32位应用程 ...

随机推荐

  1. 数组的复制及ES6数组的扩展

    一.数组的复制 // alert([1,2,3]==[1,2,3]); let cc = [0,1,2]; let dd = cc; alert(dd==cc);//此时改变dd会影响cc ES5 只 ...

  2. vue2.0之render函数

    虽然vue推荐用template来创建你的html,但是在某些时候你也会用到render函数. 虚拟DOM Vue 通过建立一个虚拟 DOM 对真实 DOM 发生的变化保持追踪.请近距离看一下这行代码 ...

  3. SDN第三次作业

    作业链接 阅读文章:http://www.sdnlab.com/19777.html 阅读<重构网络>第一二章 列举openflow1.0的12元组? 入端口 源MAC地址 目的MAC地址 ...

  4. yum出问题啦

    BUG 不小心把/usr/local上的一堆文件(夹)给删除了,于是乎,一堆问题冒出来了 loading mirror speeds from cached hostfile 解决方法 一定要执行 y ...

  5. mysql 查找某个表在哪个库

    SELECT table_schema FROM information_schema.TABLES WHERE table_name = '表名';

  6. 三、scrapy后续

    CrawlSpiders 通过下面的命令可以快速创建 CrawlSpider模板 的代码: scrapy genspider -t crawl tencent tencent.com 我们通过正则表达 ...

  7. HopSpot虚拟机中的Mark word的作用

    1.其为对象头保存对象的hashcode 2.保存GC分代年龄,锁状态标志,线程持有的锁,偏向线程的ID偏向时间戳.

  8. js中的回调函数

    1.你定义的 2.你没有调用 3.但是最终他执行了 例子: 定时器回调函数 setTimeout(function(){ },100); dom元素的回调函数 document.getElementB ...

  9. C# winform中Show()和ShowDialog()的区别

    项目实际开发中需要根据不同的应用场景利用Show和ShowDialog,尤其是三级弹窗,慎用ShowDialog,否则会导致关闭第三级窗体时,自动关闭第二级,解决方案就是在第一级窗体弹出时采用Show ...

  10. QWebSocket 客户端

    QWebSocket 客户端 Public Function - QWebSocket(const QString &origin = QString(),QWebSocketProtocol ...