Search code examples
phphtmlpdfckeditordompdf

cannot open pdf streamed by dompdf, help me


I use ckeditor and dompdf for create pdf file, when I save it successfull create a pdf file but file can not be open. It's written 'failed to load pdf document'

I use dompdf version 0.6.1

require_once("converter/dompdf/dompdf_config.inc.php");
$html = "<html><body>".$_POST['editor']."</body></html>";
$user = $_SESSION['user'];
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->set_paper("A4");
$dompdf->render();
$dompdf->stream('file_'.$user.'.pdf');

Solution

  • you can use FPDF with php . easy