C# word,excel,ppt转换成pdf,最终转换成swf

本文介绍了如何在ASP.NET中实现在线预览Office文档(Word、PPT)的功能,通过将Office文件转换为PDF,再将PDF转换为SWF。提供了Word转PDF和PPT转PDF的C#代码示例,以及利用Swftools进行PDF转SWF的方法。
摘要由CSDN通过智能技术生成

今天给大家带来的是基于asp.net上在线预览功能,我也是通过查找资料然后自己总结而来的,在这里与大家共享。

    首先我们得明确思路,得知道其原理,要实现那种在线预览的功能,其实是将office文件转换成pdf后,在将pdf转换成swf文件,然后使用flex在线展示其swf。

    在这里,我为大家提供word和ppt转换成pdf文件的源代码和将pdf转换成swf文件的方法,将pdf转换成swf文件需要下载swftools。

   word转换成pdf需要引用Microsoft.Office.Interop.Word和office,并将Microsoft.Office.Interop.Word的‘签入互操作类型’的属性设为false,ppt转换成pdf方法类似,代码如下:

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Word = Microsoft.Office.Interop.Word;
using ppt = Microsoft.Office.Interop.PowerPoint;
using Microsoft.Office.Core;
using Microsoft.Office.Interop.PowerPoint;
using PowerPoint = Microsoft.Office.Interop.PowerPoint;
using System.Diagnostics;

 

   protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                string path = "C:/a.doc";
                string targetpath = "C:/b.pdf";
                string pptpath = "C:/a.pptx";
                string ppts = "C:/h.pdf";
                DocToPDF(path, targetpath);

                PPTToPDF(pptpath, ppts);
            }
          

        }
        protected bool DocToPDF(string sourcePath, string targetPath)
        {
            bool result = false;
            Word.WdExportFormat exportFormat = Word.WdExportFormat.wdExportFormatPDF;
            object paramMissing = Type.Missing;
            Word.ApplicationClass wordApplication = new Word.ApplicationClass();
            Word.Document wordDocument = null;
            try
            {
                object paramSourceDocPath = sourcePath;
                string paramExportFilePath = targetPath;
          

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值