使用contenteditable元素将HTML转换为带有编辑的PDF

时间:2016-02-05 13:06:21

标签: javascript php jquery html ajax

在用户使用用户编辑将内容可编辑元素编辑为PDF后,我需要一种转换HTML的方法 请找到以下代码转换HTML页面但没有用户编辑:

include("mpdf60/mpdf.php");
$wide=300;
$hight=300; 
$mpdf=new mPDF('',array($wide,$hight), 0, '', 15, 15, 16, 16, 9, 9);

$mpdf->WriteHTML(file_get_contents('test.html'));
$mpdf->Output();
exit;

0 个答案:

没有答案