2023-04-28 23:18:10 +01:00
|
|
|
package stirling.software.SPDF.controller.api;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import org.apache.pdfbox.pdmodel.PDDocument;
|
|
|
|
import org.apache.pdfbox.pdmodel.PDPage;
|
|
|
|
import org.apache.pdfbox.pdmodel.PDPageTree;
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import org.springframework.http.ResponseEntity;
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestPart;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
import stirling.software.SPDF.utils.PdfUtils;
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
public class MergeController {
|
|
|
|
|
|
|
|
private static final Logger logger = LoggerFactory.getLogger(MergeController.class);
|
|
|
|
|
|
|
|
private PDDocument mergeDocuments(List<PDDocument> documents) throws IOException {
|
|
|
|
// Create a new empty document
|
|
|
|
PDDocument mergedDoc = new PDDocument();
|
|
|
|
|
|
|
|
// Iterate over the list of documents and add their pages to the merged document
|
|
|
|
for (PDDocument doc : documents) {
|
|
|
|
// Get all pages from the current document
|
|
|
|
PDPageTree pages = doc.getPages();
|
|
|
|
// Iterate over the pages and add them to the merged document
|
|
|
|
for (PDPage page : pages) {
|
|
|
|
mergedDoc.addPage(page);
|
|
|
|
}
|
2023-04-28 23:45:54 +01:00
|
|
|
|
|
|
|
|
2023-04-28 23:18:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return the merged document
|
|
|
|
return mergedDoc;
|
|
|
|
}
|
|
|
|
|
|
|
|
@PostMapping(consumes = "multipart/form-data", value = "/merge-pdfs")
|
|
|
|
public ResponseEntity<byte[]> mergePdfs(@RequestPart(required = true, value = "fileInput") MultipartFile[] files) throws IOException {
|
|
|
|
// Read the input PDF files into PDDocument objects
|
|
|
|
List<PDDocument> documents = new ArrayList<>();
|
|
|
|
|
|
|
|
// Loop through the files array and read each file into a PDDocument
|
|
|
|
for (MultipartFile file : files) {
|
|
|
|
documents.add(PDDocument.load(file.getInputStream()));
|
|
|
|
}
|
|
|
|
|
|
|
|
PDDocument mergedDoc = mergeDocuments(documents);
|
|
|
|
|
2023-04-28 23:45:54 +01:00
|
|
|
|
2023-04-28 23:18:10 +01:00
|
|
|
// Return the merged PDF as a response
|
2023-04-28 23:45:54 +01:00
|
|
|
ResponseEntity<byte[]> response = PdfUtils.pdfDocToWebResponse(mergedDoc, files[0].getOriginalFilename().replaceFirst("[.][^.]+$", "") + "_merged.pdf");
|
|
|
|
|
|
|
|
for (PDDocument doc : documents) {
|
|
|
|
// Close the document after processing
|
|
|
|
doc.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
return response;
|
2023-04-28 23:18:10 +01:00
|
|
|
}
|
|
|
|
|
2023-02-03 20:26:35 +00:00
|
|
|
}
|