c# 将PPT转换成HTML

这只是一个小程序,就是将ppt转换成html,方法很多,为了以后备用,在此记录一下,也和大家分享 源码如下: using System; using System.Collections.Generic; using System.Text; using System.IO; using PPT = Microsoft.Office.Interop.PowerPoint; using


这只是一个小程序,就是将ppt转换成html,方法很多,为了以后备用,在此记录一下,也和大家分享
  源码如下:

using System;
  using System.Collections.Generic;
  using System.Text;
  using System.IO;
  using PPT = Microsoft.Office.Interop.PowerPoint;
  using System.Reflection;

namespace WritePptDemo
  {
      class Program
      {
          static void Main(string[] args)
          {
              string   path;         //文件路径变量

PPT.Application pptApp;     //Excel应用程序变量
                PPT.Presentation pptDoc;     //Excel文档变量

PPT.Presentation pptDoctmp;

path   = @"C:\MyPPT.ppt";      //路径
              pptApp =   new PPT.ApplicationClass();   //初始化

//如果已存在,则删除
              if   (File.Exists((string)path))
              {
                    File.Delete((string)path);
              }

//由于使用的是COM库,因此有许多变量需要用Nothing代替
              Object   Nothing = Missing.Value;
              pptDoc =   pptApp.Presentations.Add(Microsoft.Office.Core.MsoTriState.msoFalse);
                pptDoc.Slides.Add(1,   Microsoft.Office.Interop.PowerPoint.PpSlideLayout.ppLayoutText);

string text = "示例文本";

foreach   (PPT.Slide slide in pptDoc.Slides)
              {
                    foreach (PPT.Shape shape in slide.Shapes)
                    {
                        shape.TextFrame.TextRange.InsertAfter(text);
                    }
              }

//WdSaveFormat为Excel文档的保存格式
                PPT.PpSaveAsFileType format = PPT.PpSaveAsFileType.ppSaveAsDefault;

//将excelDoc文档对象的内容保存为XLSX文档 
                pptDoc.SaveAs(path, format, Microsoft.Office.Core.MsoTriState.msoFalse);

//关闭excelDoc文档对象 
                pptDoc.Close();

//关闭excelApp组件对象 
                pptApp.Quit();

Console.WriteLine(path + " 创建完毕!");

Console.ReadLine();

string   pathHtml = @"c:\MyPPT.html";

PPT.Application pa = new PPT.ApplicationClass();

pptDoctmp = pa.Presentations.Open(path,   Microsoft.Office.Core.MsoTriState.msoTrue,   Microsoft.Office.Core.MsoTriState.msoFalse,   Microsoft.Office.Core.MsoTriState.msoFalse);
                PPT.PpSaveAsFileType formatTmp = PPT.PpSaveAsFileType.ppSaveAsHTML;
                pptDoctmp.SaveAs(pathHtml, formatTmp,   Microsoft.Office.Core.MsoTriState.msoFalse);
                pptDoctmp.Close();
              pa.Quit();
                Console.WriteLine(pathHtml + " 创建完毕!");
          }
      }
  }
 
 
  以上程序是使用C# 先创建一个ppt 文件并向里面写入了文字,然后再把此ppt 转换成html  ,对于上面程序需要说明的其实就是
  引用dll的问题, 在项目中添加引用,在com 组件中选择 microsoft powerpoint 11.0 object   library ,而如果你的电脑没有安装 office 2003 是不会有这个的,而如果安装的是office 2007 则是microsoft powerpoint 12.0 object   library。而且即使你引用成功后,还是会编译不通过,是因为少安装了 office   PIA  ,在安装office 时,如果你是选择的典型安装是不会安装这个的,因为这个只针对开发人员才会用到。可以到网上下载一个 office PIA 安装下就ok了
 
  ----------------------------------Office文件转换成Html格式---------------------------------------------------------------------------------------------------------------------------------------------------------
  
  
  
 using   Microsoft.Office.Core;
 using Microsoft.Office.Interop.PowerPoint;

using System;
  using System.Collections.Generic;
  using System.Linq;
  using System.Text;
  using System.Web;
  using System.IO;
  using System.Text.RegularExpressions;
  using Nd.Webs;
  using Aspose.Cells;
  using Aspose.Words;
  using ND.CommonHelper;
  using Microsoft.Office.Interop.PowerPoint;
  using Microsoft.Office.Core;

namespace Api.Note.Base
  {
      #region Office文件转换成Html格式
      class OfficeHtmlBo
      {
          #region InsertHeadHtml
          /// <summary>
          /// InsertHeadHtml
          /// </summary>
          /// <param   name="WordFilePath">InsertHeadHtml</param>
          private string   InsertHeadHtml(string strHtml, string realPath)
          {
              int index   = strHtml.IndexOf("<body");
              strHtml =   strHtml.Insert(index, "<div   style=‘height:60px;font-size:14px;margin:0px 0px   12px 0px;padding:14px 4px 12px 12px;line-height:24px;height:1%;‘>以下是该文档的HTML预览效果。<br/><span>由于是网页提取显示word中的内容,有可能部分显示与源文档中有差异,如想查看更准确的信息,</span>您可以点击&nbsp;<a   style=‘color:6699FF;text-decoration:underline;‘   href=‘/Lib/UdControls/Download.aspx?action=Download&appFormCode=" +   HttpContext.Current.Request.QueryString["appFormCode"].ToString() +   "&path=" +   HttpContext.Current.Request.QueryString["path"].ToString() +   "&encrypt=" + HttpContext.Current.Request.QueryString["encrypt"].ToString()   + "‘><b>下载原始附件</b></a></div>");

Regex   reg = new   Regex(@"(?<start><img[^>]+?src="")(?<src>[^""]+?)(?<end>""[^>]+?>)");
              strHtml =   reg.Replace(strHtml, delegate(Match m)
              {
                    return string.Format("{0}{1}{2}{3}",
                        m.Groups["start"].Value,
                        realPath,
                        m.Groups["src"].Value,
                        m.Groups["end"].Value
                        );
              });

return strHtml;
          }
          #endregion

#region GetLeftStr
          /// <summary>
          /// 截取字符串左边指定长度
          /// </summary>
          /// <param   name="str"></param>
          /// <param   name="length"></param>
          ///   <returns></returns>
          public string GetLeftStr(string   str, int length)
          {
              length =   length * 2;
              string   tempStr = "";
              int i = 0;
              foreach   (char c in str)
              {
                    tempStr += c.ToString();
                    if (((int)c >= 33) && ((int)c <= 126))
                    {
                        //字母和符号原样保留 
                        i += 1;
                    }
                    else
                    {
                        i += 2;
                    }
                    if (i >= length)
                    {
                        return tempStr;
                    }
              }
              return   str;
          }

#endregion

#region 将Word文档转换成HTML格式
          /// <summary>
          /// 将Word文档转换成HTML格式
          /// </summary>
          /// <param   name="WordFilePath">Word文档格式</param>
          private void WordToHtmlFile(string   WordFilePath)
          {
              try
              {
                    // 指定原文件和目标文件
                    string realPath = WordFilePath.Substring(0,   WordFilePath.LastIndexOf("/") + 1);
                    WordFilePath = System.Web.HttpContext.Current.Server.MapPath(WordFilePath);
                    object target = WordFilePath.Substring(0,   WordFilePath.LastIndexOf(".")) + ".html";
                    //string realPath = WordFilePath.Substring(0,   WordFilePath.LastIndexOf(".")) + ".html";

if (!File.Exists(target.ToString()))
                    {
                        Document doc = new Document(WordFilePath);
                        doc.Save(target.ToString(), SaveFormat.Html);
                    }

StreamReader sr = new StreamReader(target.ToString(), Encoding.Default);
                    string strHtml = sr.ReadToEnd();

strHtml = InsertHeadHtml(strHtml, realPath);
                    HttpContext.Current.Response.Write(strHtml);

sr.Close();
              }
              catch   (Exception ex)
              {
                    //记录异常
                    LogEntry logEntry = new LogEntry();
                    logEntry.Message = ex.Message;
                    logEntry.Title = "---->将Word文档转换成HTML格式异常[WordToHtmlFile]";
                    logEntry.TimeStamp = DateTime.Now;
                    logEntry.LogEntryType = LogEntryType.Error;
                    logEntry.LogCatalog = LogCatalog.ExceptionLog;
                    logEntry.StackTrace = ex.StackTrace;
                    LogPosition logPosition = LogPosition.FileLog;
                    string positionParameter =   SysConfig.ToString(SysConfig.GetAppSetting("LogPath"));
                    SysLogger.Write(logEntry, logPosition, positionParameter);
              }
          }
          #endregion

#region 将Excel文件转换成HTML格式
          /// <summary>
          /// 将Excel文件转换成HTML格式
          /// </summary>
          /// <param   name="ExcelFilePath">Excel文件路径</param>
          private void   ExcelToHtmlFile(string ExcelFilePath)
          {
              try
              {
                    string realPath = ExcelFilePath.Substring(0,   ExcelFilePath.LastIndexOf("/") + 1);
                    int index = ExcelFilePath.LastIndexOf("/");
                    string fileName;
                    if (ExcelFilePath.IndexOf(":") != -1)
                    {
                        fileName = ExcelFilePath.Split(new char[] { ‘:‘ })[0].ToString();
                        fileName = GetLeftStr(fileName.Substring(0,   fileName.LastIndexOf(".")), 10) +   fileName.Substring(fileName.LastIndexOf("."));
                        fileName = HttpUtility.UrlEncode(fileName, Encoding.UTF8);
                    }
                    else
                    {
                        fileName = ExcelFilePath.Substring(index + 1, ExcelFilePath.Length - index -   1);
                        fileName = GetLeftStr(fileName.Substring(0,   fileName.LastIndexOf(".")), 10) +   fileName.Substring(fileName.LastIndexOf("."));
                        //编码
                        fileName = HttpUtility.UrlEncode(fileName, Encoding.UTF8);
                    }
                    fileName = fileName.Substring(0, fileName.LastIndexOf("."));
                    ExcelFilePath = System.Web.HttpContext.Current.Server.MapPath(ExcelFilePath);
                    //目标html文件路径
                    object target = ExcelFilePath.Substring(0,   ExcelFilePath.LastIndexOf(".")) + ".html";

string target2 = ExcelFilePath.Substring(0,   ExcelFilePath.LastIndexOf("\\")) + "\\" + fileName +   "_files\\sheet001.htm";
                    if (!File.Exists(target.ToString()))
                    {
                        //为了保险,只读方式打开 
                        //object readOnly = true;
                        //// 指定另存为格式(html) 
                        //object format = Microsoft.Office.Interop.Excel.XlFileFormat.xlHtml;

////打开Excel文件
                        //oBook = excelApp.Workbooks.Open(ExcelFilePath, Unknown, readOnly,
                        //    Unknown, Unknown, Unknown, Unknown, Unknown, Unknown,
                        //    Unknown, Unknown, Unknown, Unknown, Unknown, Unknown);

//// 转换格式 
                        //oBook.SaveAs(target, format, Unknown, Unknown, Unknown, Unknown,
                        //       Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlNoChange,
                        //     Unknown, Unknown, Unknown, Unknown, Unknown);

Workbook wBook = new Workbook();
                        wBook.Open(ExcelFilePath);
                        wBook.Save(target.ToString(), FileFormatType.Html);
                    }

StreamReader sr = new StreamReader(target2.ToString(), Encoding.Default);
                    string strHtml = sr.ReadToEnd();

strHtml = InsertHeadHtml(strHtml, realPath);

strHtml = strHtml.Replace("window.location.replace", "");
                    strHtml = strHtml.Replace("filelist.xml", realPath + "/"   + fileName + "_files/filelist.xml");
                    strHtml = strHtml.Replace("stylesheet.css", realPath +   "/" + fileName + "_files/stylesheet.css");
                    HttpContext.Current.Response.Write(strHtml);

sr.Close();
              }
              catch   (Exception ex)
              {
                    //记录异常
                    LogEntry logEntry = new LogEntry();
                    logEntry.Message = ex.Message;
                    logEntry.Title = "---->将Excel文件转换成HTML格式[ExcelToHtmlFile]";
                    logEntry.TimeStamp = DateTime.Now;
                    logEntry.LogEntryType = LogEntryType.Error;
                    logEntry.LogCatalog = LogCatalog.ExceptionLog;
                    logEntry.StackTrace = ex.StackTrace;
                    LogPosition logPosition = LogPosition.FileLog;
                    string positionParameter =   SysConfig.ToString(SysConfig.GetAppSetting("LogPath"));
                    SysLogger.Write(logEntry, logPosition, positionParameter);
              }
          }
          #endregion

#region 将PPT文件转换成HTML格式
          /// <summary>
          /// 将PPT文件转换成HTML格式
          /// </summary>
          /// <param   name="PptFilePath">PPT文件路径</param>
          private void PptToHtmlFile(string   PptFilePath)
          {
                ApplicationClass ac = new ApplicationClass();
                Presentation pptFile = null;
              try
              {
                    string realPath = PptFilePath.Substring(0,   PptFilePath.LastIndexOf(".")) + ".html";
                    PptFilePath = System.Web.HttpContext.Current.Server.MapPath(PptFilePath);
                    //获得html文件名
                    object target = PptFilePath.Substring(0,   PptFilePath.LastIndexOf(".")) + ".html";

if (!File.Exists(target.ToString()))
                    {
                        if (PptFilePath.Contains(".pptx"))
                        {
                            pptFile = ac.Presentations.Open2007(PptFilePath, MsoTriState.msoCTrue,   MsoTriState.msoCTrue, MsoTriState.msoFalse, MsoTriState.msoFalse);
                            pptFile.SaveAs(target.ToString(), PpSaveAsFileType.ppSaveAsHTML,   MsoTriState.msoCTrue);
                        }
                        else if (PptFilePath.Contains(".ppt"))
                        {
                            pptFile = ac.Presentations.Open(PptFilePath, MsoTriState.msoCTrue,   MsoTriState.msoCTrue, MsoTriState.msoFalse);
                            pptFile.SaveAs(target.ToString(), PpSaveAsFileType.ppSaveAsHTML,   MsoTriState.msoCTrue);
                        }
                    }
                    //StreamReader sr = new StreamReader(target.ToString(), Encoding.Default);
                    //string strHtml = sr.ReadToEnd();
                    //Response.Write(strHtml);
                    HttpContext.Current.Response.Redirect(realPath);
              }
              finally
              {
                    if (pptFile != null)
                    {
                        pptFile.Close();
                    }
                    ac.Quit();
                    GC.Collect();
              }
          }
          #endregion
      }
      #endregion

}

c# 将PPT转换成HTML

时间: 2024-11-09 04:55:32

c# 将PPT转换成HTML的相关文章

office之间的格式转换解析 如何将ppt转换成word

Office文档之间可以进行相互转换吗?这个问题问出来,很多人的第一反应就是不能,Microsoft office有不少的类型文档,针对不同的领域,有各自不同的功能,正因为他们直接的"不同",所以将格式转换变得困难.也不是没有人试过,像是复制后粘贴就是一种好方法,但是说"转换"还太勉强.下面为大家介绍:office之间的格式转换解析,如何将ppt转换成word? 步骤1,首先下一个可以转换文档格式的工具,请将下载安装软件,并点击"立即运行"在安装

ppt转换成pdf的方法你都会哪些?

摘自百家号:ppt转换成pdf的方法你都会哪些?       在处理客户发来的PPT幻灯片,总想着如果能将其转换成pdf格式就好了,因为ppt文稿是连续的图片构成,翻页浏览不是很方便.那么如何将ppt转换成pdf呢?ppt转换成pdf的方法你都会哪些? 好了,不吊大家胃口了,这里分享三个ppt转换成pdf的方法,大家看下你都会哪些?      一.当您的Office软件本身带有PDF插件,您可以直接选择另存PDF格式文件;(Office 2007及以上版本适用) 二.利用PPT里面本身携带的PD

如何将ppt转换成word经典转换手册

将ppt转换成word的工作在平时文案编辑领域是经常会出现的一个,文本格式的转换也着实让人头疼了一把.平时我们所知道的转换不过是经典的pdf转换成word,或是word转换成pdf,而且很多转换或是转换工具都是围绕着带有版权的pdf文件设置的,哪里有ppt转换成word这样的office文件直接的转换.但其实,想要将ppt转换成word还真的有,而且是非常简单经典的转换方法,你知道吗? 如何将ppt转换成word?      步骤一:请下载安装迅捷pdf转换器,这也是一款pdf转换成word转换

扫描ppt转换成pdf软件

扫描ppt转换成pdf软件目前,许多信息资料需要转化成电子文档以便于各种应用及管理,但因信息数字化处理的方式落后,不但费时费力,而且资金耗费巨大,造成了大量文档资料的积压,因此急需一种快速高效的软件系统来满足这种海量录入需求.迅捷ppt转换成pdf转换器软件系统正是适用于个人.小型图书馆.小型档案馆.小型企业进行大规模文档输入.图书翻印.大量资料电子化的软件系统. 专业的计算机公司团队为帮助办公人员更好的解决文档格式转换的问题,也是推出了多款软件.其中最有口碑的就是ppt转换成pdf转换器201

C#.net word excel powerpoint (ppt) 转换成 pdf 文件

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms; using Word = Microsoft.Office.Interop.Word;using Excel = Microsoft.Office

怎样把ppt转换成pdf

怎样把ppt转换成pdf课堂上教师一般都使用ppt课件进行教学,出于复习的需要想将课件打印出来.然,ppt直接打印效果不是很好,而且包含一些不需要的图片等,若要将批量ppt演示文稿打印出来,最好的办法是选择一款实用型的ppt转换成ppt转换器,能够轻松地实现高质量的转换. 究竟什么样的ppt转pdf转换软件有如此强大功能呢?迅捷ppt转为pdf转换器增强版,作为知名pdf转换工具, ppt转为pdf转换器拥有较好的pdf文件内容识别能力.优秀的pdf文件内容解析和识别的能力,使得pdf转换器能够

ppt转换成pdf转换器教程

ppt转换成pdf转换器教程ppt幻灯片是工作学习常常接触的文件,它操作容易,效果明显,很多办公人员青睐于ppt的制作,但是也可能会遇到各种问题,比如做好的ppt在演示的时候会出现声音.动画.字体的一些问题,如果能将ppt转换成pdf这样的话就会方便很多,也不容易有各种问题.针对这类情况,如果有朋友需要转换的可以网上下载安装迅捷ppt转pdf转换器,这样问题就会迎刃而解. 迅捷ppt转换成pdf转换器的使用过程 1. 打开pdf转换器,点击进入软件. 2. 选择需要使用的模式,如果需要将文件转化

什么转换器ppt转换成pdf效果好?

什么转换器ppt转换成pdf效果好?什么转换器可以简单有效的将ppt转换成pdf文档?答案毋庸置疑一定是迅捷pdf转换器.迅捷ppt转换成pdf转换器是目前国内最新技术,摒弃了之前转换器的转化率低.延时.乱码等问题,是一款高效的转换工具.如果朋友碰到office与pdf之间的相互转换,相信迅捷pdf转换器一定是你的理想选择. 虽然网上有很多pdf转换的软件,但是功能却是千差万别,而不同的差异也给我们带来了不一样的转换效果.大家在选择pdf转换器时,可以尝试用这几条标准来找到合适的pdf转换器.

ppt转换成pdf转换器绿色版

ppt转换成pdf转换器绿色版批量办公文档转换软件,可以一次性批量地将Office办公文档换为pdf,支持命令行参数,使得转换工作可以自动运行,这里菜鸟把我的方法写下来,分享给朋友们,希望能帮到大家,更希望起到抛砖引玉的作用,有更好地方法被分享出来. 软件简介: 迅捷ppt转换成pdf转换器可用于Acrobat pdf文件批量转换为PowerPoint(幻灯片)演示文稿.ppt转换成pdf转换器是一个专业的pdf解决方案,将pdf转换为PowerPoint 2010,2007,2003,2000

ppt转换成pdf转换器破解版教程

ppt转换成pdf转换器破解版教程 如何将ppt转成pdf?ppt文档转换就是一个糟心的事情,大部分软件只能做到只能做到大部分转换成功,无法实现完美,但是还是有一款专业的PDF转换软件在技术上能够实现文档格式完美的兼容处理! 转换技巧: 1.首先安装迅捷ppt转换成pdf转换器,注意一定是V4.1版的,这款功能相对于以往的版本更加强大.具体下载过程可以按照官网软件下载说明一步确定即可. 2.安装完成后单击”目标文件格式“下方的”Office转pdf“;鼠标放置”添加文件“按钮上,打开需要转换的文