pdfPrint4

Print a PDF file.
int pdfPrint4(PDFHandle pdf)
This function prints the currently open PDF file.

There are a number of functions that set printing parameters - see the "Printing parameters" section in the function list.

C:
PDFHandle pdf; /* open a PDF file using pdfLoadFile, pdfLoadMem, etc. */ pdfLoadFile(&pdf, "c:\\test.pdf"); /* set printing parameters */ pdfPrintSetPrinter(pdf, L"printer55"); pdfPrintSetPages(pdf, "3-10"); .... /* print the PDF file */ pdfPrint4(pdf);
pdfPrintToDC2