GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Wednesday, March 9, 2011

PHP - Create A PDF File

<?php

try {
    $p = new PDFlib();

    /*  open new PDF file; insert a file name to create the PDF on disk */
    if ($p->begin_document("", "") == 0) {
        die("Error: " . $p->get_errmsg());
    }

    $p->set_info("Creator", "hello.php");
    $p->set_info("Author", "Rainer Schaaf");
    $p->set_info("Title", "Hello world (PHP)!");

    $p->begin_page_ext(595, 842, "");

    $font = $p->load_font("Helvetica-Bold", "winansi", "");

    $p->setfont($font, 24.0);
    $p->set_text_pos(10, 700);
    $p->show("Thank you for you all here");
    $p->continue_text("(says PHP)");
    $p->continue_text("");
    $p->setfont($font, 12.0);
    $p->continue_text("For the last moment of this one");

    $file = file_get_contents("license.txt");
    $size = strlen($file);
    $count = $size/80;
    for($i=0;$i<$count;$i++){
        $a = $i * 80;
        $p->continue_text(substr($file, $a, 80));
    }

    $p->end_page_ext("");

    $p->end_document("");

    $buf = $p->get_buffer();
    $len = strlen($buf);

    header("Content-type: application/pdf");
    header("Content-Length: $len");
    header("Content-Disposition: inline; filename=hello.pdf");
    print $buf;
}
catch (PDFlibException $e) {
    die("PDFlib exception occurred in hello sample:\n" .
    "[" . $e->get_errnum() . "] " . $e->get_apiname() . ": " .
    $e->get_errmsg() . "\n");
}
catch (Exception $e) {
    die($e);
}
$p = 0;
?>

Share/Bookmark

No comments:

Post a Comment