Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phpdocx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
When merging PDF's with MergePDF, an unwanted black line is introduced at the top and bottom of each page. The line doesn't exist in the original docx document, or the pdf document produced with Transform. Just when documents are merged.
Another piece of info...the source of the document doesn't have to be Word. Electronically generated FedEx shipping labels saved as PDFs have the same issue.
Any suggestions?
Hello,
That bug was fixed on phpdocx 3.5. Please send to contact@phpdocx.com two documents to test them.
You are using the MultiMerge class, right?
Regards.
Hello,
Actually, it is occurring in both 4.1 and 4.5. Yes, using MultiMerge. Will send files separately.
Thanks
I have test this on 4.6 corporate version and this bug is still there. For 6 months you didn't provide any answer to this issue and you didn't fix that bug.
Can we ask you to treat customers problems with your software properly?
Edited by admin ·
18-08-2015 - 18:06 Hello,
This bug was fixed some time ago; maybe the fix was reverted by accident. We're checking it; please send to contact[at]phpdocx.com your PDFs and script you're running to check them.
We treat our customers and users problems properly and with the utmost care.
Regards.Hello,
Please try this minor change: edit the MultiMerge.inc class and in the mergePdf method add this line:
$pdf->setPrintHeader(false);
before $pdf->addPage();
The code should be:
$pdf->setPrintHeader(false);
$pdf->addPage();
$tplidx = $pdf->importPage($i);
And try again.
Regads.
Thank that fixes the problem.
Thank you for quick answer.