verypdf.dll as 64-bit version

we have a developer license for the PDF Editor Toolkit Standard Version 2.0. We bought the version 12/4/2006.I use the verywrite.dll to create pdf files with Microsoft Visual Studio 2005 (C++ version). Is there a 64–bit version of the dll available?
=============================
Please download the latest version of PDF Editor Toolkit Professional Version from following URL,

https://www.verypdf.com/pdfsdk/pdf_editor_toolkit_pro_trial.zip

after you download it, please unzip it to a folder, and use following steps to register pdfshell.exe COM,

~~~~~~~~~~~~~~~~~~~~~~~~~~~
REM 1) run cmd window as administrator
REM 2) run Installx32.bat in 32-bit windows, Installx64.bat in 64-bit windows
REM 3) Give control to Everyone user account to pdfshell.exe located in Windows/System32 or Windows/SysWoW64 or current folder
REM 4) OK

C:\windows\syswow64\regsvr32.exe pdfshell.dll
pdfshell.exe /regserver
~~~~~~~~~~~~~~~~~~~~~~~~~~~

Then you can call "pdfshell2.shellexe" COM from your code to process the PDF files, "pdfshell2.shellexe" COM can be called from both 32bit and 64bit EXE applications, for example,

~~~~~~~~~~~~~~~~~~~~~~~~~
Set pdfObject = CreateObject("pdfshell2.shellexe")

Dim szPDFFile
Dim id
Dim code
Dim lFile
Very_Set_Opacity = 240

szPDFFile = FilePath & "stampExample.pdf"
on error resume Next

pdfObject.com_VerySetLicenseKey "XXXXXXXXXXXXXXXXXXXX"
id = pdfObject.com_VeryStampOpen(szPDFFile,FilePath &  "_001.pdf")
If (id > 0) Then
iRet = pdfObject.com_VerySetFunction(id, Very_Set_Opacity, 30, 0, 0, 0)
code = pdfObject.com_VeryStampAddText(id, 1, "Opacity_30", 65296, 0, 0, 0, -45, 0, 0, 0, "", 48, 0, "", 0)
iRet = pdfObject.com_VerySetFunction(id, Very_Set_Opacity, 60, 0, 0, 0)
code = pdfObject.com_VeryStampAddText(id, 3, "Opacity_60", 65296, 0, 0, 0, 45, 0, 0, 0, "", 48, 0, "", 0)
iRet = pdfObject.com_VerySetFunction(id, Very_Set_Opacity, 90, 0, 0, 0)
code = pdfObject.com_VeryStampAddText(id, 5, "Opacity_90", 65296, 0, 0, 0, -45, 0, 0, 0, "", 48, 0, "", 0)
iRet = pdfObject.com_VerySetFunction(id, Very_Set_Opacity, 10, 0, 0, 0)
code = pdfObject.com_VeryStampAddText(id, 7, "Opacity_10", 65296, 0, 0, 0, 45, 0, 0, 0, "", 48, 0, "", 0)

pdfObject.com_VeryStampClose (id)
End If
~~~~~~~~~~~~~~~~~~~~~~~~~

VeryPDF
VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *


Verify Code   If you cannot see the CheckCode image,please refresh the page again!