s0urce Posted March 29, 2007 Posted March 29, 2007 CODE oPDF = ObjCreate("AcroPDF.PDF.1"); $Version=$oPDF.GetVersions $file = FileOpen("test.pdf", 0) $myfile = FileRead($file) FileClose($file) $oPDF.LoadStream($myfile) Is there any function to load a streamed file into the PDF Object?? If($answer == ture) So i could add the file source as base64 or however into a string and run pdf fromout the compied exe !!? else Is there any other way to get a PDF to an exe wihtout using FileInstall() or any crap wich needs to write the file onto HardDisk? endif thx, s0urce
jamesband Posted June 12, 2007 Posted June 12, 2007 CODEoPDF = ObjCreate("AcroPDF.PDF.1"); $Version=$oPDF.GetVersions $oPDF.LoadFile("test.pdf") What about this?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now