|
Posted by monomaniac21 on 12/31/06 17:37
This code comes straight from php.net when i use it, it creates a pdf
but this contains a big diagonal text across it saying pdflib.com? why
is that there? I cant find it in the code? and how do you get rid of
it?
<?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", "Me");
$p->set_info("Author", "Me");
$p->set_info("Title", "My pdf");
//parameters: width, height
$p->begin_page_ext(800, 1000, "");
$font = $p->load_font("Helvetica-Bold", "winansi", "");
$p->setfont($font, 16);
$p->set_text_pos(320, 950);
$p->show("Title");
$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;
?>
[Back to original message]
|