Questions tagged [pdfmerger]
27 questions
2
votes
1 answer
i want to merge pdf in laravel trying by package lynX39 But can not complete install
Installing lynx39/lara-pdf-merger (dev-master e952590): Cloning e95259079c
In Git.php line 325:
Failed to clone https://github.com/deltaaskii/lara-pdf-merger.git via https
, ssh protocols,…

Mostafa Mahmoud
- 153
- 3
- 7
1
vote
1 answer
merge multiple pdf files into one using QuestPDF in c#
We have created the WinForm application and for PDF generate we have used QuestPDF, but now we want to merge all PDF files into one single PDF using QuestPDF.
Is there any way to merge PDF files using QuestPDF?

Pooja Parmar
- 65
- 1
- 7
1
vote
0 answers
PyPDF2 placing pages 2-9 at random locations in merged .pdf; everything else in the correct order
I'm using this code to merge 94 individual 1-page .pdf documents into a book.
from glob import glob
from PyPDF2 import PdfMerger
def pdf_merge():
"""Merges individual .pdfs into one large .pdf"""
merger = PdfMerger()
allpdfs = [a for a…

upquark00
- 53
- 6
1
vote
0 answers
PDFBox's capacity to create maximum size merged pdf in Docker environment
I am trying to merge 1000+ PDFs into single PDF using pdfbox mergeDocuments(MemoryUsageSetting memUsageSetting), application is deployed in Docker environment. I'm planning to create merged PDF size of 4 GB. Currently heap size is set to 6 GB and…

user9841813
- 11
- 1
1
vote
0 answers
Error: already ended, I created a list of pdf paths and tried to merge them in one file, but I'm getting Unhandled promise Error: already ended
I created a list of pdf paths and tried to merge them in one file, but I'm getting
Unhandled promise Error: already ended
this is my code, I tried also to await while adding to pdf but didn't like it
Is there any way to handle this error?
…

Ghalia
- 11
- 1
0
votes
0 answers
I want to split a pdf based on its contents using NodeJS
i want to split an existing PDF with unknown nuber of pages into multiple files based on keywords.
Inside the PDF are variables that are everytime the same, like "Mitarbeitername:" "Personalnummer:" "Monat:". I want to use those, or a combination of…
0
votes
0 answers
How to merge 4 invoice PDF into single page A4 size PDF
I have created one program with reportlab in Python where Excel sheet is taken as input . one pdf is created for each line of that excel sheet . Addition to this I am adding two images and some other stuff to the code . Horizontal lines , vertical…

omkar
- 1
0
votes
0 answers
I am getting error of key must be PDF Object in PyPDF4
I am trying getting my error here
from PyPDF4.generic import ByteStringObject
pdf_reader = PyPDF4.PdfFileReader(pdf_file)
page = pdf_reader.pages[0]
page.mergePage(pdf_reader.pages[0])
content = page['/Contents'].getObject()
content = re.sub(b"/Tx…

timp bill
- 57
- 7
0
votes
1 answer
How to merge pdf files using python without storing them into the local directory
I have some pdf files which are uploaded on a remote server. I have URL for each file and we can download these PDF files by visiting those URLs.
My question is,
I want to merge all pdf files into a single file (but, without storing these files into…

Prathmesh
- 57
- 6
0
votes
0 answers
Saving and Merging PDF Files from Listbox
I've been working on this particular problem for months now and have made no progress...
The goal is to have a library of PDFs that you can add to a list, then click a button that will merge whatever PDFs you added and save said merged file to a…

Austin Sims
- 27
- 4
0
votes
0 answers
Laravel merge compressed PDF files without ghostscript
I have a problem with pdfMerger. I can't merge pdf files higher than the 1.4 version. I guess this problem is because I am using FPDI free version. How can I merge 1.5 PDF files without using Ghostscript? I don't have shell access to the hosting…

gokhandnmz
- 1
- 1
0
votes
1 answer
Laravel PDF merger not working properly with specific file
I have an application running on Laravel 5.7. In this application we use lynx39/lara-pdf-merger which uses daltcore/lara-pdf-merger. We use this package to simply merge two pdf documents into one.
$basename = "merged_file.pdf";
$pdfMerger =…

Lukas Grofcik
- 457
- 1
- 3
- 15
0
votes
0 answers
pdfs are not merged in order they are selected using pdf-merger-js library
I am using the below files in my directory
index.html
The form is as below
Lazy PDF Merger

Rameez Ahmad
- 1
- 1
0
votes
0 answers
When combining PDFs, how do i include a PDF if it is only sometimes in the file path?
whenever i use below, it always combines the "daily no sales" list of PDFs. i can not get the if else statement to work.
daily_files = ["list of files including sales pdf"]
daily_no_sales = ["list of files without sales pdf"]
if "Sales.pdf" in…

jwirtz5
- 1
0
votes
0 answers
how to Merge Multiple PDF files in Laravel
I'm using dompdf to generate pdfs and download it to computer in my Laravel.
now i need to select multiple ids and generate pdfs for them and merge it into one pdf.
for that i storing generated pdfs in storage folder.
how can get all related pdfs…

zens
- 11
- 2