Please let advice how to make use of EncrptPDF at ASP Application Server Level ( Usable in Background Jobs).
================================
Hi,
Please refer to following information about how to call EncryptPDF SDK from ASP code,
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The EncryptPDF COM for asp user manual
Steps:
1.Copy the encryptpdf.dll and EncryptPDFOCX.dll files to your system32 directory, for example,
~~~~~~~~~~~
copy encryptpdf.dll c:\windows\system32
copy EncryptPDFOCX.dll c:\windows\system32
~~~~~~~~~~~
2.Register the EncryptPDFOCX.dll library in your system, for example,
~~~~~~~~~~~
regsvr32 c:\windows\system32\EncryptPDFOCX.dll
~~~~~~~~~~~
3.Put the test.asp file into your "C:\wwwhome" directory,
5.Run the MS IE software, input http://127.0.0.1 site, and open the "test.asp" file,
6.The result files are generated in the "C:\wwwhome" directory.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Please refer to the ASP code at below,
<%
dim oTest
dim very_ID
dim ret
Set oTest = Server.CreateObject("EncryptPDFOCX.CEncryptPDF")
Response.write "Create Object Success!"
very_ID=oTest.veryEncryptPDFEx("C:\wwwhome\test1.pdf","C:\wwwhome\test1_encrypted.pdf",128,4,"Owner","User")
if very_ID < 0 then
Response.write "Convert Failer!"
Response.write very_ID
else
Response.write "Convert Success!"
end if
%>
Related Posts
Related posts:
How can I add password protection for PDF files with 40 or 128 bit encryption?
Convert prn to tif and set resolution via command line?
Convert px3 to pdf and rotate page via command line?
How to convert PXL to PDF and fit to paper size?
How to convert PRN to JPG and fit to paper size?
How to fill PDF form by FDF?
Applying PDF Password Security Using Acrobat JavaScript
How to password protect PDF files on Linux system?