Du bist hier: Tips » Scripte » PHP
PHP
Referenzliste

PDF_new

PDF-Funktionen

    Befehl:
resource PDF_new ( )


    Beschreibung:
Erzeugt PDFlib-Objekt


    Aktiv in Version:
(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)

PDF_new() - Beispiel


Eingabe:
<?php
// erstelle handle für neues PDF-Dokument
$pdf = pdf_new();
// Öffne ein file
pdf_open_file($pdf, "test.pdf");
// starte eine neue Seite (A4)
pdf_begin_page($pdf, 595, 842);
// erhalte und verwende ein Font-Objekt
$arial = pdf_findfont($pdf, "Arial", "host", 1); pdf_setfont($pdf, $arial, 10);
// Drucke den 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);
// ende der Seite
pdf_end_page($pdf);
// Schliesse und speichere das file
pdf_close($pdf);
?>

PDF-Funktionen