I need convert pdf fifle to swf file and load the swf files by IIS, please tell me how to ...
thanks.
5 Replies - 7095 Views - Last Post: 12 February 2008 - 02:35 PM
#1
I need convert pdf fifle to swf file and load the swf files by IIS, p
Posted 12 February 2008 - 07:29 AM
Replies To: I need convert pdf fifle to swf file and load the swf files by IIS, p
#2
Re: I need convert pdf fifle to swf file and load the swf files by IIS, p
Posted 12 February 2008 - 07:41 AM
#3
Re: I need convert pdf fifle to swf file and load the swf files by IIS, p
Posted 12 February 2008 - 07:54 AM
adobe flash paper.
#4
Re: I need convert pdf fifle to swf file and load the swf files by IIS, p
Posted 12 February 2008 - 08:10 AM
capty99, on 12 Feb, 2008 - 07:54 AM, said:
adobe flash paper.
Thanks.
I already try adobe falsh paper, I was failed load the flash pager .exe from my .asp page directly. After that I use C# to load the flash pager .exe, it convert pdf file to swf file well at windows form application, then I made a .dll and regist the .dll, the IIS .asp page could load this .dll, but the .dll can not convert pdf files to swf files.
#5
Re: I need convert pdf fifle to swf file and load the swf files by IIS, p
Posted 12 February 2008 - 08:44 AM
bhandari, on 12 Feb, 2008 - 07:41 AM, said:
Here you go:
pdf to swf
pdf to swf
Thank you.
I already tried pdf2vec.exe which I got from http://www.verydoc.com/, I was failed load the pdf2vec.exe from my .asp page directly. After that I use C# to load pdf2vec.exe, it convert pdf file to swf file well at windows form application, then I made a .dll and regist the .dll, the IIS .asp page could load this .dll, but the .dll can not convert pdf files to swf files.
#6
Re: I need convert pdf fifle to swf file and load the swf files by IIS, p
Posted 12 February 2008 - 02:35 PM
rmei, on 12 Feb, 2008 - 08:44 AM, said:
bhandari, on 12 Feb, 2008 - 07:41 AM, said:
Here you go:
pdf to swf
pdf to swf
Thank you.
I already tried pdf2vec.exe which I got from http://www.verydoc.com/, I was failed load the pdf2vec.exe from my .asp page directly. After that I use C# to load pdf2vec.exe, it convert pdf file to swf file well at windows form application, then I made a .dll and regist the .dll, the IIS .asp page could load this .dll, but the .dll can not convert pdf files to swf files.
Hi,
I have fixed the IIS page cannot implement convert pdf to swf problem. It needs adding user and password to the .dll codes, like
ProcessStartInfo startInfo = new ProcessStartInfo(_flashPrinter);
Process myProcess = new Process();
startInfo.UseShellExecute = false;
startInfo.UserName = _userName;
System.Security.SecureString sc = new System.Security.SecureString();
char[] ch = _password.ToCharArray();
for (int i = 0; i < ch.Length; i++)
sc.AppendChar(ch[i]);
startInfo.Password = sc;
startInfo.Arguments = inpathfilename + " -o " + outpathfilename;
myProcess.StartInfo = startInfo;
myProcess.Start();
Page 1 of 1
|
|

New Topic/Question
Reply



MultiQuote




|