mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-05-15 18:55:56 +00:00
78 lines
2.9 KiB
Java
78 lines
2.9 KiB
Java
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 io.swagger.v3.oas.annotations.Operation;
|
|
import io.swagger.v3.oas.annotations.Parameter;
|
|
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);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
// Return the merged document
|
|
return mergedDoc;
|
|
}
|
|
|
|
@PostMapping(consumes = "multipart/form-data", value = "/merge-pdfs")
|
|
@Operation(
|
|
summary = "Merge multiple PDF files into one",
|
|
description = "This endpoint merges multiple PDF files into a single PDF file. The merged file will contain all pages from the input files in the order they were provided."
|
|
)
|
|
public ResponseEntity<byte[]> mergePdfs(
|
|
@RequestPart(required = true, value = "fileInput")
|
|
@Parameter(description = "The input PDF files to be merged into a single file", required = true)
|
|
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);
|
|
|
|
|
|
// Return the merged PDF as a response
|
|
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;
|
|
}
|
|
|
|
} |