暂无描述

index.php 1017B

1234567891011121314151617181920
  1. <?php include("head.inc"); ?>
  2. <a name="overview"></a><h2>Overview</h2>
  3. <p>dompdf is an HTML to PDF converter. At its heart, dompdf is (mostly) CSS2.1
  4. compliant HTML layout and rendering engine written in PHP. It is a style-driven
  5. renderer: it will download and read external stylesheets, inline style tags, and
  6. the style attributes of individual HTML elements. It also supports most
  7. presentational HTML attributes.</p>
  8. <p>PDF rendering is currently provided either by PDFLib (<a
  9. href="http://www.pdflib.com">www.pdflib.com</a>) or by a bundled version the
  10. CPDF class, originally R&amp;OS CPDF written by Wayne Munro but customized by
  11. the dompdf team to improve performance and add features. In order to use PDFLib
  12. with dompdf the PDFLib PHP extension is required (available from PDFLib). Using
  13. PDFLib improves performance and reduces the memory requirements of dompdf
  14. somewhat, while the CPDF class, though slightly slower, eliminates any
  15. dependencies on external PDF libraries.</p>
  16. <?php include("foot.inc"); ?>