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: 23
- 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: 12856
- 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: 2859
- 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: 12856
- 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]
-
SarnXero
- User
- Posts: 23
- Joined: Mon Nov 03, 2025 9:48 pm
-
Willy Van Nuffel
- User
- Posts: 2859
- Joined: Wed Jan 18, 2006 12:10 pm
Re: How to merge Odd and Even pages into one document?
Did you succeed to merge the odd and even pages? It is always interesting for us to know if it worked.
Kind regards.
Kind regards.
-
Sean - PDF-XChange
- Site Admin
- Posts: 1032
- Joined: Wed Sep 14, 2016 5:42 pm
Re: How to merge Odd and Even pages into one document?
Yes that's true Willy - hopefully SarnZero will let us know.
Kind regards,
Kind regards,
Sean Godley
Technical Writer
PDF-XChange Co LTD
Sales: +1 (250) 324-1621
Fax: +1 (250) 324-1623
Technical Writer
PDF-XChange Co LTD
Sales: +1 (250) 324-1621
Fax: +1 (250) 324-1623