Advertisement
Tsyklop

GeneratePDF

Aug 16th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?
  2.  
  3. include($_SERVER['DOCUMENT_ROOT']."/newPDF/mpdf/mpdf.php");
  4.  
  5. function GeneratePDF($id, $message) {
  6. AddMessage2Log($message);
  7. $file = array();
  8.  
  9. $file['path'] = $_SERVER['DOCUMENT_ROOT']."/newPDF/pdfs/".$id.".pdf";
  10.  
  11. $file['name'] = $id.".pdf";
  12.  
  13. $mpdf=new mPDF('','A4', 12, 'Helvetica', 32,25,27,25,16);
  14.  
  15. $mpdf->WriteHTML($message);
  16.  
  17. $mpdf->Output($file['path'], 'F');
  18.  
  19. return $file;
  20.  
  21. }
  22.  
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement