is it possible to prevent the repeat of a thead?
Like:
<table repeat_header="0"> or
<thead repeat_header="0"> or <tfoot repeat_header="0"> is defined
Thanks
Frank
PHP Notice: Undefined property: mPDF::$hasOC in /MPDF/mpdf.php on line 9001
PHP Notice: Undefined index: TD>>ID>> in /MPDF/classes/cssmgr.php on line 1067
PHP Notice: Undefined index: BODY in /MPDF/classes/cssmgr.php on line 1026
PHP Notice: Undefined offset: -1 in /MPDF/classes/cssmgr.php on line 1206
$svg = $_POST['structureSVG'];$svg_pdf = str_replace('"', '\'', $svg); //change " to '
var_dump($svg_pdf);//shows string which contains xml/svg<svg>...</svg>
$html = " <div> $svg_pdf </div> ";$mpdf -> WriteHTML($html);$mpdf -> Output('pdf/test_svg.pdf', 'I');
I'm having problems displaying images correctly in PDFs' generated
with mPDF with Adobe Reader DC. It seems like the image is being
rendered too big, even though I view the PDF in true size. I don't have
the problems when using the internal viewers of Chrome and Firefox.
Used gif,png and jpg but no difference in rendering.
I also tried version 5.6, 5.7 and 6 but no difference.
I dont know if its possible to post images in this post, but i also posted the question on so forum where you can see the different images in each viewer.
http://stackoverflow.com/questions/32073396/mpdf-incorrect-image-size-in-adobe-reader-d
Sample image: http://test.onbereikbaar.nl/testlogo.png
PDF generated with mPDF: http://test.onbereikbaar.nl/testpdf.pdf
$mpdf = new mPDF('');
$mpdf->WriteHTML('<a href="#top">only english works</a>');
$mpdf->addPage();
$mpdf->WriteHTML('<a name="top">top</a>');
$mpdf->Output();
The foolowing examples dont work:
$mpdf = new mPDF('he');
$mpdf->WriteHTML('<a href="#top">only english works עברית</a>');
$mpdf->addPage();
$mpdf->WriteHTML('<a name="top">top</a>');
$mpdf->Output();
$mpdf = new mPDF('');
$mpdf->WriteHTML('<a href="#top">only english works עברית</a>');
$mpdf->addPage();
$mpdf->WriteHTML('<a name="top">top</a>');
$mpdf->Output();
Thanks alot.
Hi, I'm using ancors with mpdf to target annotaions,
I'm currently creating an anchor to the page of the annotation, and not to the annotation itself.
Is it poosible to create an anchor to the annotation itself? so clicking on a link will take you to the annotaion
and poosibly even focus it? (for example like the behaviour in adobe reader when go you to the comments menu and click on a comment?)