Come convertire HTML in PDF usando PHP? [chiuso]

-2

PDF o Portable Document Format è un tipo di file popolare che viene spesso utilizzato per i documenti online. È ottimo per la distribuzione di contenuti scritti scaricabili ed è spesso utilizzato da governi e aziende. Poiché è un formato familiare a tutti, molte applicazioni consentono all'utente di convertire altri tipi di documenti nel formato PDF. PHP è un linguaggio di programmazione che ha una capacità integrata di convertire in PDF. Gli script PHP possono essere utilizzati per trasformare tipi di file come HTML in file PDF.

    
posta Meng Longlong 03.09.2012 - 05:45
fonte

1 risposta

3

Prova dompdf , sembra che ti serva:

dompdf is an HTML to PDF converter. At its heart, dompdf is (mostly) CSS 2.1 compliant HTML layout and rendering engine written in PHP. It is a style-driven renderer: it will download and read external stylesheets, inline style tags, and the style attributes of individual HTML elements. It also supports most presentational HTML attributes.

Inoltre, una delle risposte per Questa domanda di overflow dello stack suggerisce wkhtmltopdf :

Simple shell utility to convert html to pdf using the webkit rendering engine, and qt.

Quindi il tuo codice PHP potrebbe chiamarlo. Tuttavia, ha alcuni problemi:

  • Ha bisogno di una Qt patchata per alcune funzioni
  • Ha bisogno dello stack X.org sul lato server

Oppure potresti combinare html2ps (da HTML a PostScript) e ps2pdf (PostScript in PDF).

    
risposta data 03.09.2012 - 07:04
fonte

Leggi altre domande sui tag