word转为图片

    #region word转为图片

        public void GetImages(string SourceDocPath, string ExportFilePath)

        {

            object paramSourceDocPath = SourceDocPath;

            string paramExportFilePath = ExportFilePath;

            object paramMissing = Type.Missing;

            ApplicationClass wordApplication = new ApplicationClass();

            wordApplication.Visible = false;

            Document wordDocument = null;

            WdExportFormat paramExportFormat = WdExportFormat.wdExportFormatPDF;

            bool paramOpenAfterExport = false;

            WdExportOptimizeFor paramExportOptimizeFor =

                WdExportOptimizeFor.wdExportOptimizeForPrint;

            WdExportRange paramExportRange = WdExportRange.wdExportAllDocument;

            int paramStartPage = 0;

            int paramEndPage = 0;

            WdExportItem paramExportItem = WdExportItem.wdExportDocumentContent;

            bool paramIncludeDocProps = true;

            bool paramKeepIRM = true;

            WdExportCreateBookmarks paramCreateBookmarks =

                WdExportCreateBookmarks.wdExportCreateWordBookmarks;

            bool paramDocStructureTags = true;

            bool paramBitmapMissingFonts = true;

            bool paramUseISO19005_1 = false;

            try

            {

                // Open the source document.

                wordDocument = wordApplication.Documents.Open(

                    ref paramSourceDocPath, 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);

                // Export it in the specified format.

                string expFileName = paramExportFilePath + "word.pdf";

                if (wordDocument != null)

                    wordDocument.ExportAsFixedFormat(expFileName,

                        paramExportFormat, paramOpenAfterExport,

                        paramExportOptimizeFor, paramExportRange, paramStartPage,

                        paramEndPage, paramExportItem, paramIncludeDocProps,

                        paramKeepIRM, paramCreateBookmarks, paramDocStructureTags,

                        paramBitmapMissingFonts, paramUseISO19005_1,

                        ref paramMissing);

                

                //声明一个程序信息类

                System.Diagnostics.ProcessStartInfo  Info  =  new  System.Diagnostics.ProcessStartInfo();

                //设置外部程序名

                Info.FileName = "cmd.exe";

                //设置外部程序的启动参数(命令行参数)为test.txt

                Info.Arguments  =  "/c convert.exe word.pdf " + paramExportFilePath + "p%d.png";

                //设置外部程序工作目录为  

                Info.WorkingDirectory  =  paramExportFilePath;

                Info.UseShellExecute = true;

                //声明一个程序类

                System.Diagnostics.Process  Proc  ;

                try

                {

                    //

                    //启动外部程序

                    //

                    Proc  =  System.Diagnostics.Process.Start(Info);

                }

                catch(System.ComponentModel.Win32Exception  e)

                {

                    //MessageBox.show();

                    string aa = e.Message;

                    

                }

                int pngNum = 0;

                string tempFileName = paramExportFilePath + "p" + pngNum + ".png";

                while(true)

                {

                    if(!File.Exists(tempFileName))

                        break;

                    pngNum++;

                    tempFileName = paramExportFilePath + "p" + pngNum + ".png";

                }

            }

            catch (Exception ex)

            {

                Console.WriteLine(ex.Message);

            }

            finally

            {

                // Close and release the Document object.

                if (wordDocument != null)

                {

                    wordDocument.Close(ref paramMissing, ref paramMissing,

                        ref paramMissing);

                    wordDocument = null;

                }

                // Quit Word and release the ApplicationClass object.

                if (wordApplication != null)

                {

                    wordApplication.Quit(ref paramMissing, ref paramMissing,

                        ref paramMissing);

                    wordApplication = null;

                }

                GC.Collect();

                GC.WaitForPendingFinalizers();

                GC.Collect();

                GC.WaitForPendingFinalizers();

            }

        }

        #endregion

转载于:https://www.cnblogs.com/zhen8023/archive/2011/10/19/2217435.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值