誰かがjpgraphをdompdfに組み込む方法を知っていますか?誰かがjpgraphをdompdfに組み込む方法を知っていますか?
これはDOMPDFのための私のコードです:
//generamos el PDF
require_once("../dompdf/dompdf_config.inc.php");
if (get_magic_quotes_gpc()) {
$html = stripslashes($html);
$old_limit = ini_set("memory_limit", "64M");
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->set_paper('letter', 'portrait'); //landscape , portrait
$dompdf->render();
$dompdf->stream("TPE - Reporte F.E.A. $asignaturashort.pdf");
exit(0);
}
}
DOMPDFは素晴らしい実行されているが、私はjpgraphのライブラリを使用してPDFを作成する前にグラフを追加する必要があります。 誰かがそれを行う方法を知っていますか? ありがとう!