PHP Doku:: Erzeugt PDFlib-Objekt - function.pdf-new.html

Verlauf / Chronik / History: (39) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzNon-Text MIME-AusgabenPDFPDF FunktionenPDF_new

Ein Service von Reinhard Neidl - Webprogrammierung.

PDF Funktionen

<<PDF_moveto

PDF_open_ccitt>>

PDF_new

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)

PDF_newErzeugt PDFlib-Objekt

Beschreibung

resource PDF_new ( )

Erzeugt ein neues PDFlib-Objekt mit Standardeinstellungen.


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
Justin
9.11.2008 21:36
<?php
// create handle for new PDF document
$pdf = pdf_new();
// open a file
pdf_open_file($pdf, "test.pdf");
// start a new page (A4)
pdf_begin_page($pdf, 595, 842);
// get and use a font object
$arial = pdf_findfont($pdf, "Arial", "host", 1); pdf_setfont($pdf, $arial, 10);
// print text
pdf_show_xy($pdf, "There are more things in heaven and earth, Horatio,",50, 750);
pdf_show_xy($pdf, "than are dreamt of in your philosophy", 50,730);
// end page
pdf_end_page($pdf);
// close and save file
pdf_close($pdf);
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)