home *** CD-ROM | disk | FTP | other *** search
PHP Script | 2001-05-16 | 652 b | 32 lines | [TEXT/LMAN] |
- <?php
- # $id$
-
- $p = PDF_new();
- PDF_open_file($p, "");
-
- PDF_set_info($p, "Creator", "hello.php");
- PDF_set_info($p, "Author", "Rainer Schaaf");
- PDF_set_info($p, "Title", "Hello world (PHP)");
-
- PDF_begin_page($p, 595, 842);
- $font = PDF_findfont($p, "Helvetica-Bold", "host", 0);
- PDF_setfont($p, $font, 18.0);
-
- PDF_set_text_pos($p, 50, 700);
- PDF_show($p, "Hello world!");
- PDF_continue_text($p, "(says PHP)");
-
- PDF_end_page($p);
- PDF_close($p);
-
- $buf = PDF_get_buffer($p);
- $len = strlen($buf);
-
- header("Content-type: application/pdf");
- header("Content-Length: $len");
- header("Content-Disposition: inline; filename=hello.pdf");
- print $buf;
-
- PDF_delete($p);
- ?>
-