如何在asp.net中将PDF转换为Flash [英] how to convert PDF to flash in asp.net

查看:196
本文介绍了如何在asp.net中将PDF转换为Flash的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将PDF转换为asp.net中的Flash.
请给我一个解决方案.
谢谢.

I want to convert PDF to flash in asp.net.
Pls give me a solution.
Thanks.

推荐答案

您好,以下是有关您的问题的两个相关主题:
http://dotnetslackers. com/Community/blogs/haissam/archive/2008/03/14/convert-pdf-to-swf-in-asp-net.aspx
http://forums.techarena.in/software-development/1276342.htm [ ^ ]
并且有一些解决方案适合您.
顺便说一句,为什么要使用编码方式将其转换为Flash.有点复杂.有一些转换器供您使用,无需编码,您可以非常快速地获得结果,例如 pdf到Flash图书转换器 [ ^ ]
Hello, here are two related threads about your question:
http://dotnetslackers.com/Community/blogs/haissam/archive/2008/03/14/convert-pdf-to-swf-in-asp-net.aspx and
http://forums.techarena.in/software-development/1276342.htm[^]
And there are some solutions for you.
BTW, why you want to use the coding way to convert it to Flash. It''s a bit complicate. There are some converters for you, no coding and you can get results very quickly, such as pdf to flash book converter[^]


PDF如果您使用 flip book maker 的专业工具,可以将表单文件转换为Flash.这是PDF出版用于创建Flash页面的软件,从而可以从PDF翻转书本.并且它将您的PDF文件转换为在线杂志,电子报纸,在线目录,数字手册和其他出版物以进行在线共享.
PDF form files can be changed into flash on condition that you use the professional tool of flip book maker.It is the PDF publishing software to create Flash page turning flip books from PDF. And It converts your PDF files to online magazines, e-newspaper, online catalogs, digital booklets, and other publications for online sharing.


您好,

试试这个:

Hi,

Try this one:

namespace ConsoleApplication1
{
class Program
{
  static void Main(string[] args)
  {
     Process proc = new Process();
     proc.StartInfo.FileName = @"Exe file name ";
     string strArguments = "";
     strArguments += "-swfburst";
     strArguments += " Here type the destination of the input and out put file";
     Console.WriteLine(strArguments);
     proc.StartInfo.Arguments = @strArguments;
     proc.Start();
     proc.WaitForExit();
   }
  }
}



如果这解决了您的问题,请标记为答案并投票5

问候,
爱德华



Please mark as answer and vote 5 if this solved your problem

Regards,
Eduard


这篇关于如何在asp.net中将PDF转换为Flash的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆