Guest User

Untitled

a guest
Jan 21st, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. $pdf = new Pdf([
  2. 'mode' => Pdf::MODE_CORE,
  3. 'format' => Pdf::FORMAT_A4,
  4. 'destination' => Pdf::DEST_BROWSER,
  5. 'cssInline' => 'body {font-family: calibri;background-color:burlywood}',
  6. 'options' => [
  7. 'title' => 'Recibo de Pago',
  8. 'subject' => 'Recibo de Pago',
  9. 'shrink_tables_to_fit' => 1,
  10. ],
  11. ]);
  12.  
  13. $pdf->Output($content, $path_temp_pdf, 'F'); //Crea un archivo fisicamente en el servidor
  14. $pdf->content = $content;
  15. $pdf->filename = $file_name;
Add Comment
Please, Sign In to add comment