By using MakeNUp, Saddle stitching printing

  1. By using MakeNUp, Saddle stitching printing can be done?
    If it can be done, I would like to know how to use it.

  2. How can we make 2UP using MakeNUp?

For example, Please refer to the attached for for better explanation.

NUp.pdf (149.2 KB)

@hbhur102

Thank you for contacting support.

We are afraid such a document may not be created even with Adobe Acrobat. However, you can follow a workaround approach by changing the order of pages and saving that updated PDF as another file and then using MakeNUp(“a.pdf”, “b.pdf”, 2, 1); method to achieve your requirements.

Please refer to Working with Pages and below code snippet for further information about suggested approach.

        // Open first document
        Document finalDocument = new Document();
        
        // Open second document
        Document sourceDocument = new Document(dataDir + "Input.pdf");

        //Add first page
        finalDocument.Pages.Add(sourceDocument.Pages[1]);
        
        //Add last page
        finalDocument.Pages.Add(sourceDocument.Pages[sourceDocument.Pages.Count]);
        
        //Save reordered file
        finalDocument.Save(dataDir + "Reordered.pdf");

We hope this will be helpful. Please feel free to contact us if you need any further assistance.