Skip to content
VeryPDF Knowledge Base

VeryPDF Knowledge Base

Knowledge Base to VeryPDF Products

  • Home
  • Products
    • PDF to Any Converter
      • PDF to Word Converter
      • PDF to Word OCR Converter
      • PDF to Excel Converter
      • PDF to Excel OCR Converter
      • PDF to Text Converter
      • PDF to Text OCR Converter
      • PDF to HTML Converter
      • PDF Extract TIFF
      • PDF to Image Converter
      • PDF to PowerPoint Converter
    • Any to PDF Converter
      • AutoCAD to PDF Converter
      • PCL to PDF Converter
      • Image to PDF Converter
      • Image to PDF OCR Converter
      • HTML to PDF Converter
      • Document Printer
      • Document Converter
      • PowerPoint to Flash Converter
      • PowerPoint Converter
      • Free Text To PDF Converter
      • Metafile To PDF Converter
      • Office to Any Converter
    • PDF Utilities
      • PDFcamp Printer
      • PDF Editor
      • PDF Password Remover
      • Encrypt PDF
      • PDF Stamper
      • PDF Print
      • PDF Form Filler
      • Advanced PDF Tools
      • PDF Split-Merge
      • PDF Size Splitter
      • PDF Manual Splitter
      • PDF Optimizer
      • PDF Crop
      • PDF to PDF/A Converter
      • PDF Batch Print
    • Graphics Tools
      • TIFF Toolkit
      • Raster to Vector Converter
      • PDF to Flash Flip Book Converter
      • Image to Text OCR Converter
    • Business & OCR
      • PDF to Excel Converter
      • PDF to Excel OCR Converter
      • Scan to Excel OCR Converter
      • PDF to Word Converter
      • PDF to Word OCR Converter
      • Scan to Word OCR Converter
      • Office to Any Converter
      • Screen OCR
      • TIFF Toolkit
    • Multimedia
      • Flash to Image Converter
      • PowerPoint to Video Converter
      • Flash to Animated GIF Converter
      • PowerPoint to Flash Converter
      • PowerPoint Converter
    • Virtual Printer
      • PDFcamp Printer
      • Document Printer
      • Document Converter
      • Mini EMF Printer Driver
    • Development
      • Doc Converter COM Component
      • PDF Editor OCX Control
      • PDF to Text Converter SDK
      • Image to PDF Converter SDK
      • Image to PDF OCR Shell
      • HTML Converter Command Line
      • PDF to Image Converter SDK
      • PCL to PDF Converter SDK
      • PDF Password Remover SDK
      • Encrypt PDF SDK
      • PDF Split-Merge SDK
      • PDF Stamp SDK
      • PDF Print SDK
      • PDF Form Filler OCX
      • Advanced PDF Tools SDK
      • PDF Editor Toolkit SDK
      • Document Converter SDK
    • Customization
      • Custom Development Solution
    • More >>
  • Solutions
    • Web Viewer Solution
    • Web Annotator Solution
    • OCR Solution
    • PDF to Office Solution
    • PDF Form Filler Solution
    • Document Security Solution
    • Printer Intercept and Capture
    • PDF Extraction Solution
    • Paperless Printing Solution
    • Document Conversion
    • PDF Digital Signature
    • More >>
  • Blog
    • Advanced PDF Tools
    • docPrint Pro
    • PDFcamp Printer
    • PDF Editor
    • PDF Print
    • OCR Products
    • HTML to PDF Converter
    • PDF to Image Converter
    • Image to PDF Converter
    • PDF to Word Converter
  • Company
    • About Us
    • Contact Us

Stamp PDF Documents with Royalty-Free PDF Stamper SDK Developer License

Posted on 2023/03/06Author VeryPDF / 983 Views

Hi there,

We are using this component in our app, and would like to upgrade to 64bit.
Do you have a 64bit version of this component available?

Best regards,
Customer
-----------------------------

Stamp PDF Documents with Royalty-Free PDF Stamper SDK Developer License
The latest version of PDF Stamper SDK has already supported the 64bit system, please by following steps to call PDF Stamper SDK from your 64bit application,

1. Please download the latest version of PDF Stamper SDK from following web page,

https://www.verypdf.com/app/pdf-stamp/try-and-buy.html#buy-sdk
https://www.verypdf.com/dl2.php/pdfstamp_sdk.zip

2. Please run "bin/install_for_x64.bat" to register PDFStampCom.exe first, you need run it with administrator privilege, you can also run a CMD window with administrator privilege first, and then run following command line to register it by manual

Contact Us for Custom Development Solutions
Response within 24 hours

PDFStampCom.exe /regserver

3. Please run "test-pdfstampcom-x64.vbs" to test the stamp functions, please refer to a VB Script sample code at below, the "PDFStampCOM.CPDFStamp" COM interface can be supported by both 32bit and 64bit applications,

Const Very_Set_Range = 131
Const Very_Set_Opacity = 240
Const Very_Get_Opacity = 240
Const Very_Get_PdfPageCount = 206
Const Very_Get_PageBoxForStamp = 260
Const Very_Set_EmbedFont = 241
Const Very_Get_EmbedFont = 241
Const Very_Set_TransparentColor = 242
Const Very_Set_ImageLossless = 243
Const Very_Set_InsertMultipleImageCopy = 244

Set fso = CreateObject("Scripting.FileSystemObject")
strFolder = fso.GetParentFolderName(WScript.ScriptFullName)

strPDFFile = strFolder & "\example.pdf"
strOutFile = strFolder & "\vbcom-test.pdf"
Set pdfstamp = CreateObject("PDFStampCOM.CPDFStamp")
pdfstamp.veryRegEx "XXXXXXXXXXXXXX"
id = pdfstamp.veryOpenEx(strPDFFile, strOutFile)
'id = pdfstamp.VeryStampLayerOpenEx(strPDFFile, strOutFile, "PDFManWatermark_Overlayer", "PDFManWatermark_Underlayer")
If (id > 0) Then
     Page = 1
     iRet = pdfstamp.verySetFunctionEx(id, Very_Set_InsertMultipleImageCopy, 1, 0, 0, 0)
     pagecount = pdfstamp.veryGetFunctionEx(id, Very_Get_PdfPageCount, 0, 0, 0, 0)
     MsgBox "PDF file: " & strPDFFile & ", Page Count = " & CStr(pagecount)
     For Page = 1 To pagecount
        
         leftpos = pdfstamp.veryGetFunctionEx(id, Very_Get_PageBoxForStamp, Page, 0, "left", 0)
         top = pdfstamp.veryGetFunctionEx(id, Very_Get_PageBoxForStamp, Page, 0, "top", 0)
         pagewidth = pdfstamp.veryGetFunctionEx(id, Very_Get_PageBoxForStamp, Page, 0, "width", 0)
         pageheight = pdfstamp.veryGetFunctionEx(id, Very_Get_PageBoxForStamp, Page, 0, "height", 0)
        
         'We need to control which pages the stamp goes on
         iRet = pdfstamp.verySetFunctionEx(id, Very_Set_Range, Page, 1, 0, 0)
         strStampBuf = "Page:" + CStr(pagecount - Page + 1) + ", Page Box: [" + CStr(leftpos) + " " + CStr(top) + " " + CStr(pagewidth) + " " + CStr(pageheight) + "]"
        
         'Not embed TTF font for general text stamp
         iRet = pdfstamp.verySetFunctionEx(id, Very_Set_EmbedFont, 0, 0, 0, 0)
         iRet = pdfstamp.veryAddTextEx(id, 2, strStampBuf, 255, 0, 0, 0, 0, 0, 0, 300, 0, 10, 1, "https://www.verypdf.com", 0)
        
         'Embed special TTF font into PDF file, we can to use any TTF font
         iRet = pdfstamp.verySetFunctionEx(id, Very_Set_EmbedFont, 1, 0, 0, 0)
         iRet = pdfstamp.veryAddTextEx(id, 1, "0123456789", RGB(0, 0, 0), 0, 0, 0, 0, 0, 0, 0, "Code-39-20", 8, 1, "https://www.verypdf.com/", 0)
        
         iRet = pdfstamp.verySetFunctionEx(id, Very_Set_ImageLossless, 1, 0, 0, 0)
         iRet = pdfstamp.veryAddImageEx(id, 9, strFolder & "\watermark.gif", 0, 0, 0, 0, 50, 50, 0, 0, 0)
     Next
     pdfstamp.veryCloseEx (id)
End If

iRet = pdfstamp.VeryStampDeleteStampFromPagesEx(strOutFile, strOutFile + "-StampRemoval.pdf", "1,5-6,8,13-15")

iRet = pdfstamp.VeryStampDeleteImagesFromPagesEx(strOutFile, strOutFile + "-ImageRemoval.pdf", 1240, 1240, "1,5-6,8,13-15")

nIsStamped1 = pdfstamp.VeryStampIsStampedEx(strPDFFile)
nIsStamped2 = pdfstamp.VeryStampIsStampedEx(strOutFile)
strMessage = strPDFFile & ", Check Stamp Status: " & CStr(nIsStamped1) & vbCrLf
strMessage = strMessage & strOutFile & ", Check Stamp Status: " & CStr(nIsStamped2)
MsgBox strMessage

strOutFile = strFolder & "\vbcom-newLayer-test.pdf"
id = pdfstamp.VeryStampLayerOpenEx(strPDFFile, strOutFile, "Foreground Layer", "Background Layer")
If (id > 0) Then
     iRet = pdfstamp.veryAddTextEx(id, 2, "Test VeryStampLayerOpen() function", 255, 0, 0, 0, 0, 0, 0, 300, 0, 10, 1, "https://www.verypdf.com", 0)
     pdfstamp.veryCloseEx (id)
End If

strOutFile = strFolder & "\vbcom-Encrypted-test.pdf"
iRet = pdfstamp.VeryStampEncryptPDFEx(strPDFFile, strOutFile, "", "123", 1, 3900)

4. OK, you could no problem to call "PDFStampCOM.CPDFStamp" from your 64bit application now.

VeryPDF

VeryPDF PDF Stamper SDK Developer License is a powerful software solution that is specifically designed for Windows Developers. This innovative technology allows developers to add text, images, and other forms of content to PDF files programmatically, making it easier and faster to generate customized PDF documents.

One of the most significant advantages of using VeryPDF PDF Stamper SDK Developer License is that it is royalty-free, meaning that developers can use it without having to pay any additional fees or charges. This makes it an incredibly cost-effective solution for businesses and organizations that need to process large volumes of PDF documents regularly.

With its easy-to-use API, VeryPDF PDF Stamper SDK Developer License can be integrated seamlessly into any Windows-based application or website. Developers can use it to add watermarks, stamps, logos, and other types of custom content to their PDF files in just a few lines of code. This makes it an ideal solution for businesses that need to create branded PDF documents or add legal disclaimers to their files.

VeryPDF PDF Stamper SDK Developer License is also highly customizable, allowing developers to tailor the software to meet their specific needs. It supports a wide range of fonts, styles, and colors, and can be configured to add content to specific pages or sections of a document. Additionally, it can be used to extract and manipulate existing content in a PDF file, such as adding hyperlinks, bookmarks, and metadata.

Overall, VeryPDF PDF Stamper SDK Developer License is an excellent software solution for Windows Developers who need a fast, reliable, and customizable way to add content to PDF documents. Its royalty-free license makes it an incredibly cost-effective option for businesses and organizations of all sizes, and its easy-to-use API ensures that developers can integrate it seamlessly into their existing workflows. If you're looking for a powerful PDF stamper tool, be sure to check out VeryPDF PDF Stamper SDK Developer License from VeryPDF.

Contact Us for Custom Development Solutions
Response within 24 hours

Related Posts

  • Placing a Text Stamp on the Last Page of a PDF with the -SR Parameter in VeryPDF PDF Stamp Command Line
  • Is there any documentation or tutorials to use VeryPDF EMF to PDF SDK with C#?
  • VeryPDF PDF SDK for Developers: Built for Developers, Trusted by Enterprises! Powerful PDF Toolkit for Developers to Edit, Convert, Sign, Secure, and Automate PDF Documents
  • Split Large PDF Files by keywords with VeryPDF PDF Content Splitter Command Line
  • How to Add a PHP Variable as a Text Watermark to PDF Files Automatically
  • VeryPDF jPDFProcess Java Library: Create and Manipulate PDF Documents with Ease
  • Streamline Form Filling with VeryPDF PDF Form Filler SDK and HTML5 PDF Form Filler Online
  • Custom PDF to PDF/A-3 + ZUGFeRD Development by VeryPDF (Simple Guide for Businesses)
  • [Solution] VeryPDF SDK for Android Platform: Offline PDF Viewer, Editor, Annotation, Conversion, Digital Signature & Document Management Solution
  • How to Convert PostScript Files to PDF and Add Barcodes/QR Codes Using VeryPDF PostScript to PDF Converter and PDFStamp Command Line SDK Tools
  • PDF Stamp SDK: What to install PDF Stamp SDK into our system?
  • Date stamp PDF on download by ASP
  • How to save a picture document under PDF?
  • Add PDF stamp
  • pdfstamp command line add black line to output PDF file

Related posts:

VeryPDF Cloud API Platform :: PDF Stamper Cloud API
How to insert metadata XML file into PDF file by Advanced PDF Tools Command Line software?
How to call PDF Stamp SDK for windows server 2008 R2 64 bit?
How to use PDFStamp SDK to add rectangles and lines with opacity option to PDF pages?
How to check the version number for my PDF Stamper Command Line pdfstamp.exe application?
VeryPDF PDF SDK for Web & Windows & Linux & Mac & iOS & Android as well as PDF C...
[Solution] VeryPDF Printer Capture to PDF or PNG – The Complete Print Job Monitoring and Archi...
VeryPDF OCR Server – High Accuracy OCR Software for Enterprise Document Conversion, PDF/A Arch...
Category: PDF Stamper Tag: add image, add text, batch processing, custom stamp, developer license, dynamic stamp, image stamp, page numbers, pdf .net, pdf bookmarks, pdf branding, pdf content, pdf customization, pdf disclaimers, pdf files, pdf generation, pdf hyperlinks, pdf manipulation, pdf metadata, pdf processing, pdf sdk, pdf stamper, pdf stamping, pdf watermark, pdf watermarking, royalty free, server license, text stamp

Post navigation

Previous PostEfficiently Extract PDF Attributes with VeryPDF PDFspy Command Line Software
Next PostIs there any documentation or tutorials to use VeryPDF EMF to PDF SDK with C#?

Custom Development Services

VeryPDF offers customized development services to meet your unique business needs, including PDF Processing, Document Automation, Document Analysis, Format Conversion, OCR, DRM, Barcode Solutions, Virtual Printer, Digital Signature, AI Integration, and more. Contact us today to get a personalized solution!

Meta

  • Log in
  • Entries RSS
  • Comments RSS
  • VeryPDF.com
  • VeryDOC.com
  • VeryUtils.com
  • imPDF.com

Recent Solutions

  • image_thumb.pngPDF/A-3 vs ZUGFeRD: Custom PDF to PDF/A e-Invoice Development with VeryPDF
  • image_thumb.pngCustom PDF to PDF/A-3 + ZUGFeRD Development by VeryPDF (Simple Guide for Bu…
  • image_thumb.png[Solution] VeryPDF Virtual Printer Driver SDK OEM Licensing, Full Source Co…
  • image_thumb.png[Solution] Secure Redaction of PII and Sensitive Data from PDFs Without Clo…
  • image_thumb.png[Solution] VeryPDF AI-Powered Smart Redact Server Solution: Permanently Rem…

Recent Posts

  • image_thumb.pngHow to Highlight Part Numbers in Large PDF Drawings Automatically (Mac and …
  • image_thumb.pngHow to Convert DOC and RTF to PDF Without Microsoft Office | DocPrint PDF v…
  • image_thumb.pngHow to Add a PHP Variable as a Text Watermark to PDF Files Automatically
  • image_thumb.pngPDF/A-3 vs ZUGFeRD: Custom PDF to PDF/A e-Invoice Development with VeryPDF
  • image_thumb.pngCustom PDF to PDF/A-3 + ZUGFeRD Development by VeryPDF (Simple Guide for Bu…

Categories

Archives

Calendar

March 2023
M T W T F S S
« Feb   Apr »
 12345
6789101112
13141516171819
20212223242526
2728293031  
© 2026 VeryPDF Knowledge Base / VeryPDF.com / VeryDOC.com / VeryUtils.com / Support
Contact
Us