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
~~~~~~~~~~~~~~~~~~~~~~~~~
Related Posts
Related posts:
Need help on Image2PDF COM
What are new features included in the latest version of PDF Editor Toolkit Professional Version?
How to programmatically insert image/simple vectors to PDF?
Extract font and its corresponding cmap in PDF
How to insert line breaks into PDF?
How to extract text from PDF with positions? How to call PDF Editor Toolkit Pro SDK from VBA source ...
What is the difference between "pdfshell.shellexe" and "pdfshell2.shellexe" in P...
I am interested in the capabilities of your "PDF Editor Toolkit Pro SDK" for a custom clou...