pdfFinishPrintJob

Finish a print job.
int pdfFinishPrintJob(PDFViewerHandle viewer)
This function finishes a print job.
C:
/* start the print job, setting parameters that apply to the whole job */ pdfStartPrintJob(viewer, FALSE, 1, "printer55"); /* set parameters that apply to the next part of the print job */ pdfLoadFile(viewer, "file1.pdf"); pdfPrintToJob(viewer, 1, 3, 0, 0, -1, -1, -1, -1, -1, -1, -1); /* set parameters for the next part of the print job */ pdfLoadFile(viewer, "file2.pdf"); pdfPrintToJob(viewer, 1, 3, 0, 0, -1, -1, -1, -1, -1, -1, 90); ... /* finish the print job */ pdfFinishJob(viewer);
pdfStartPrintJob
pdfPrintToJob
pdfPrint3