VeryPDF PDFPrint SDK version is an independent tool that can be used to print existing PDF documents to any windows printer devices in various platforms. And this page is about what VeryPDF PDFPrint SDK can help us.
VeryPDF PDFPrint SDK is a versatile tool that enables programmers to develop PDFPrint utility for a specific platform, e.g., Visual C++, Visual Basic, etc..
The following samples will show you how simple to utilize VeryPDF PDFPrint SDK for proper usage in specific platforms.
Operating Systems: all the Windows platforms, like Windows 2000, XP, Vista, 7, 10, 11, Windows Server 2003, 2008, 2008 R2 and later systems, both 32 bit and 64 bit.
The following programming languages are supported:C#, VB .NET, MS Visual Basic, Borland Delphi, VBA (MS Office products such as Access) and C++ via COM, C and C++ via native C.
void main(int argc, char *argv[])
{
if(argc != 2)
{
printf("testsdk.exe C:\\test.pdf\n");
return;
}
char *lpPDFName = argv[1];
char *lpRegcode = "XXXXXXXXXXXXXXXXXXXX";
char szCommandLine[1024];
sprintf(szCommandLine,"pdfprint -quiet -getpagecount \"%s\""
, lpPDFName);
int nPageCount = VeryPDF_PDFPrint(szCommandLine);
printf("PageCount = %d\n", nPageCount);
sprintf(szCommandLine,"pdfprint \"-$\" \"%s\" -pdforient 4
-scalex -1 -scaley -1 \"%s\"", lpRegcode,lpPDFName);
int nRet = VeryPDF_PDFPrint(szCommandLine);
printf("Return Value = %d\n",nRet);
TestPDFPrintDLL(szCommandLine);
}
Private Sub Command1_Click()
Dim nRet As Long
Dim strCmd As String
strCmd = "pdfprint -$ XXXXXXXXXXXXXXXXXXXX"
strCmd = strCmd & " -printer ""docPrint"""
strCmd = strCmd & " """ & App.Path & "\readme.pdf"""
MsgBox (strCmd)
nRet = VeryPDF_PDFPrint(strCmd)
MsgBox (Str(nRet))
End Sub
There are other samples, e.g., VB.NET in trial package, and to know more, welcome to go to Try and Buy to download trial version.