Forum


Replies: 6   Views: 3489
Mergepdf introduces horizontal line at top and bottom of every page
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.
We encourage you to download the current phpdocx version and check the Documentation available.

Posted by alerts@dalescott.com  · 19-02-2015 - 19:59

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?

Posted by admin  · 20-02-2015 - 07:51

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.

Posted by alerts@dalescott.com  · 20-02-2015 - 08:35

Hello, Actually, it is occurring in both 4.1 and 4.5. Yes, using MultiMerge. Will send files separately. Thanks

Posted by kdurolek  · 18-08-2015 - 15:00

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?

Posted by admin  · 18-08-2015 - 17:35

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.

Posted by admin  · 19-08-2015 - 06:42

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.

Posted by kdurolek  · 19-08-2015 - 09:56

Thank that fixes the problem. Thank you for quick answer.