Click here to Skip to main content
15,888,733 members
Please Sign up or sign in to vote.
3.50/5 (2 votes)
See more:
I want to convert PDF to flash in asp.net.
Pls give me a solution.
Thanks.
Posted
Comments
Dylan Morley 1-Dec-11 4:18am    
What do you expect to happen? The static PDF document becomes fancy animated eye-candy?

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[^]
 
Share this answer
 
Comments
hieupn 2-Dec-11 2:02am    
Thanks you so much.I read http://dotnetslackers.com/Community/blogs/haissam/archive/2008/03/14/convert-pdf-to-swf-in-asp-net.aspx
but where is "font" .I installed swftool and i can't find "font" in swftool forder.
Pls help me.Thanks.
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.
 
Share this answer
 
Hi,

Try this one:

C#
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();
   }
  }
}


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

Regards,
Eduard
 
Share this answer
 
Thanks you so much.I read http://dotnetslackers.com/Community/blogs/haissam/archive/2008/03/14/convert-pdf-to-swf-in-asp-net.aspx but where is "font" .I installed swftool and i can't find "font" in swftool forder. Pls help me.Thanks.
 
Share this answer
 
Comments
RaviRanjanKr 14-Dec-11 3:29am    
A suggestion :- you can use Have a question or Comment button to drop your message and to get Immediate response instead of posting as answer.
hieupn 16-Dec-11 1:57am    
thanks :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900