解决方案 »

  1.   

    给你个思路好了
    首先使用你自己的上传方式上传PPT文件到服务器然后使用FlashPrinter.exe工具进行转换文件 然后再显示。这个工具可以百度谷歌到。具体使用也很详细。自己研究下 有问题再问。要实现你的需求FlashPrinter.exe 加FlashPaper即可实现。
      

  2.   

    您哪里有实例代码吗?我这里实现不了!!!            ProcessStartInfo startInfo = new ProcessStartInfo();
                string paperroot = @"D:\FlashPaper2.2\FlashPrinter.exe";
                string docFile = @"D:\1.ppt";
                string swfFile = @"D:\2.swf ";
                startInfo.FileName = paperroot;
                startInfo.Arguments = docFile + "-o" + swfFile;
                startInfo.UseShellExecute = false;
                startInfo.RedirectStandardInput  = false;
                startInfo.RedirectStandardOutput = false;
                startInfo.CreateNoWindow = false;
                process.StartInfo = startInfo;            process.Start();            Console.WriteLine("提交完成");            Console.ReadLine();
    我这么写的,提交完成了,但是没有文件,我单独打开exe的时候
    出现了这个图,我按钮网上配置,打开还是不行,不知道怎么处理。 
      

  3.   

    你的虚拟打印机没有安装 那不是有一个Setup.exe的安装文件么
    FlashPaper是靠虚拟打印机来实现的。
      

  4.   

    - -  一共就三个.exe文件  你让我如何说你。。平时使用电脑安装软件也不少吧- -