• Word转PDF方法


    引用:

    using Microsoft.Office.Interop.Word; 

    方法:

    /// <summary>
            /// Word转PDF
            /// </summary>
            /// <param name="sourcePath">需要转换的文件路径和文件名称</param>
            /// <param name="targetPath">转换完成后的文件的路径和文件名名称</param>
            /// <returns>成功返回true,失败返回false</returns>
            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;
                Microsoft.Office.Interop.Word.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 = 0;//起始页码
                    int to = 0;//结束页码
                    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;
            }
    

    【原文地址】http://www.51aras.com/?id=21 

       

  • 相关阅读:
    等保测评 规格严格
    Idea导入模块后test文件夹不能被识别 规格严格
    git log 日志命令——显示提交日志 规格严格
    python 转unicode_python中将\\uxxxx转换为Unicode字符串的方法 规格严格
    sed i 命令详解 规格严格
    Win10磁盘上出现黄色感叹号和小锁的解决办法 规格严格
    mysql sum()按条件求和、count()按条件计数
    springboot整合jsp,页面全报404
    mysql 1267 Illegal mix of collations (utf8mb4_general_ci,IMPLICIT) and (utf8mb4_unicode_ci,IMPLICIT) for operation '='
    exception Required String parameter 'orgCode' is not present
  • 原文地址:https://www.cnblogs.com/61007257Steven/p/11121146.html
Copyright © 2020-2023  润新知