How to merge Odd and Even pages into one document?
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?
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? 
-
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?
Hello, SarnXero
Simply open the Javascript panel (Ctrl_J) and then paste the follwing into the window and click run:
Kind regards,
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);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]
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?
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.
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.
-
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?
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]
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]