How to merge Odd and Even pages into one document?

A picture is worth a thousand words. We have created some pdfs tutorials showing common tasks.

Moderators: PDF-XChange Support, Daniel - PDF-XChange, Chris - PDF-XChange, Sean - PDF-XChange, Vasyl - PDF-XChange, Stefan - PDF-XChange

SarnXero
User
Posts: 22
Joined: Mon Nov 03, 2025 9:48 pm

How to merge Odd and Even pages into one document?

Post by SarnXero »

Say you scan a double sided document but only scan one side at a time. So you have all the Odd pages in one PDF and Evens in another. Is there a way to combine the files so it places the pages correctly? :?:
User avatar
Daniel - PDF-XChange
Site Admin
Posts: 12852
Joined: Wed Jan 03, 2018 6:52 pm

Re: How to merge Odd and Even pages into one document?

Post by Daniel - PDF-XChange »

Hello, SarnXero

Simply open the Javascript panel (Ctrl_J) and then paste the follwing into the window and click run:

Code: Select all

function interleavePages(oDoc)
{
 var numPages = oDoc.numPages;
 numPages = (numPages / 2) & ~1;
 if (numPages <= 1)
  return;
 for (var i = 0; i < numPages - 1; i++)
 {
  try
  {
   oDoc.movePage(numPages + i, i * 2);
  }
  catch ( e )
  {
   break;
  }
 }
}

interleavePages(this);
Kind regards,
Dan McIntyre - Support Technician
PDF-XChange Co. LTD

+++++++++++++++++++++++++++++++++++
Our Web site domain and email address has changed as of 26/10/2023.
https://www.pdf-xchange.com
[email protected]
Willy Van Nuffel
User
Posts: 2853
Joined: Wed Jan 18, 2006 12:10 pm

Re: How to merge Odd and Even pages into one document?

Post by Willy Van Nuffel »

Hi,

Additional info...

Also remember the "Combine Even Odd Pages..."-JavaScript-tool that Mathew has written for this purpose.

See: viewtopic.php?t=40885

Other JavaScript-tools for PDF-XChange Editor: viewtopic.php?t=42190

Kind regards.
User avatar
Daniel - PDF-XChange
Site Admin
Posts: 12852
Joined: Wed Jan 03, 2018 6:52 pm

How to merge Odd and Even pages into one document?

Post by Daniel - PDF-XChange »

:)
Dan McIntyre - Support Technician
PDF-XChange Co. LTD

+++++++++++++++++++++++++++++++++++
Our Web site domain and email address has changed as of 26/10/2023.
https://www.pdf-xchange.com
[email protected]