How to Duplicate a PDF Page Using PHP
Table of contents
In this post, youβll learn how to duplicate specific PDF pages using our Duplicate PDF Page PHP API. With our API, you receive 200 credits with the free plan. Different operations on a document consume different amounts of credits, so the number of PDF documents you can generate may vary. All you need to do is create a free account(opens in a new tab) to get access to your API key.
Duplicating a PDF page allows you to perform operations on a page like watermarking and flattening before sending the pages to different sources. For instance, destination A needs the page with watermarks, while destination B needs the same page merged with another PDF but without watermarks β and you can use our Duplicate PDF API to achieve this.
Additionally, you can duplicate pages to serve as a backup. This is useful if you perform multiple operations on a PDF but youβre unsure what the final output might be and you want to preserve the original.
With our Duplicate PDF Page API, youβll be able to automate this process in your workflow.
Nutrient DWS Processor API
Duplicating a PDF page is just one of our 30+ PDF API tools. You can combine our duplication tool with other tools to create complex document processing workflows, such as:
- Converting MS Office files and images into PDFs and then duplicating specific pages
- Merging several PDFs into one and then duplicating a specific page
- Watermarking, splitting, or flattening PDFs and duplicating pages before or after
Once you create your account, youβll be able to access all our PDF API tools.
Step 1 β Creating a Free Account on Nutrient DWS Processor
Go to our website(opens in a new tab), where youβll see the page below, prompting you to create your free account.

Once youβve created your account, youβll be welcomed by a page showing an overview of your plan details.
Youβll start with 200 credits to process, and youβll be able to access all our PDF API tools.
Step 2 β Obtaining the API Key
After youβve verified your email, you can get your API key from the dashboard. In the menu on the left, click API Keys. Youβll see the following page, which is an overview of your keys:

Copy the Live API Key, because youβll need this for the Duplicate PDF Page PHP API.
Step 3 β Setting Up Folders and Files
Now, create a folder called duplicate_pdf and open it in a code editor. For this tutorial, youβll use VS Code as your primary code editor. Next, create two folders inside duplicate_pdf and name them input_documents and processed_documents.
Then, in the root folder, duplicate_pdf, create a file called processor.php. This is the file where youβll keep your code. Make sure to put your PDF files inside the input_documents folder.
Your folder structure will look like this:
duplicate_pdfβββ input_documentsβββ processed_documentsβββ processor.phpStep 4 β Writing the Code
Open the processor.php file and paste the code below into it:
<?php
$FileHandle = fopen('processed_documents/result_php.pdf', 'w+');
$curl = curl_init();
$instructions = '{ "parts": [ { "file": "document", "pages": { "start": 0, "end": 0 } }, { "file": "document" }, { "file": "document", "pages": { "start": -1, "end": -1 } } ]}';
curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.pspdfkit.com/build', CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_POSTFIELDS => array( 'instructions' => $instructions, 'document' => new CURLFILE('input_documents/document.pdf') ), CURLOPT_HTTPHEADER => array( 'Authorization: Bearer YOUR_API_KEY_HERE' // Replace YOUR_API_KEY_HERE with your API key. ), CURLOPT_FILE => $FileHandle, ));
$response = curl_exec($curl);
curl_close($curl);
fclose($FileHandle);βΉοΈ Note: Make sure to replace
YOUR_API_KEY_HEREwith your API key.
Code Explanation
You first create a FileHandle variable called $FileHandle. Then, you initiate the curl library and create the instructions:
{ "parts": [ { "file": "document", "pages": { "start": 0, "end": 0 } }, { "file": "document" }, { "file": "document", "pages": { "start": -1, "end": -1 } } ]}This duplicates the first and the last page of the PDF and adds it as a new page at the end of the PDF file. After that, you make the API call to the Duplicate PDF endpoint, the response of which is stored in the processed_documents folder.
Output
To execute the code, run the command below:
php processor.phpOn successful execution, youβll see a new processed file, result_php.pdf, located in the processed_documents folder.
The folder structure will look like this:
duplicate_pdfβββ input_documentsβββ processed_documents| βββ result_php.pdfβββ processor.phpFinal Words
In this post, you learned how to easily and seamlessly duplicate PDF pages for your PHP application using our Duplicate PDF Page API.
You can integrate these functions into your existing applications to duplicate PDF pages. With the same API token, you can also perform other operations, such as merging documents into a single PDF, adding watermarks, and more. To get started with a free trial, sign up(opens in a new tab) here.