<?php $p = PDF_new(); /* open new PDF file; insert a file name to create the PDF on disk */ if (PDF_begin_document($p, "", "") == 0) { die("Error: " . PDF_get_errmsg($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_ext($p, 595, 842, ""); $font = PDF_load_font($p, "Helvetica-Bold", "winansi", ""); PDF_setfont($p, $font, 24.0); PDF_set_text_pos($p, 50, 700); PDF_show($p, "Hello world!"); PDF_continue_text($p, "(says PHP)"); PDF_end_page_ext($p, ""); PDF_end_document($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);
PDF_begin_page($p, 595, 842); $font = PDF_findfont($p, "Helvetica-Bold", "host", 0); PDF_setfont($p, $font, 38.0); PDF_set_parameter($p, "overline", "true"); PDF_show_xy($p, "Overlined Text", 50, 780); PDF_set_parameter($p, "overline", "false"); PDF_set_parameter($p, "underline", "true"); PDF_continue_text($p, "Underlined Text"); PDF_set_parameter($p, "strikeout", "true"); PDF_continue_text($p, "Underlined strikeout Text"); PDF_set_parameter($p, "underline", "false"); PDF_set_parameter($p, "strikeout", "false"); PDF_setcolor($p, "fill", "rgb", 1.0, 0.1, 0.1); PDF_continue_text($p, "Red Text"); PDF_setcolor($p, "fill", "rgb", 0, 0, 0); PDF_set_value($p, "textrendering", 1); PDF_setcolor($p, "stroke", "rgb", 0, 0.5, 0); PDF_continue_text($p, "Green Outlined Text"); PDF_set_value($p, "textrendering", 2); PDF_setcolor($p, "fill", "rgb", 0, 0.2, 0.8); PDF_setlinewidth($p, 2); PDF_continue_text($p, "Green Outlined Blue Text"); 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=coords.pdf"); echo $buf; PDF_delete($p);
<?php $p = PDF_new(); PDF_open_file($p); PDF_set_info($p, "Creator", "hello.php"); PDF_set_info($p, "Author", "Rasmus Lerdorf"); PDF_set_info($p, "Title", "Hello world (PHP)"); pdf_set_parameter($p, "resourcefile", "/usr/share/fonts/pdflib/pdflib.upr"); PDF_begin_page($p, 595, 842); PDF_set_text_pos($p, 25, 800); $fonts = array('Courier' => 0, 'Courier-Bold' => 0, 'Courier-BoldOblique' => 0, 'Courier-Oblique' => 0, 'Helvetica' => 0, 'Helvetica-Bold' => 0, 'Helvetica-BoldOblique' => 0, 'Helvetica-Oblique' => 0, 'Times-Bold' => 0, 'Times-BoldItalic' => 0, 'Times-Italic' => 0, 'Times-Roman' => 0, 'LuciduxSans' => 1, 'Utopia-Regular' => 1, 'URWGothicL-BookObli' => 1, 'URWPalladioL-Roma' => 1, 'NimbusMonL-ReguObli' => 1, 'CANDY' => 1, 'Arial' => 1); foreach ($fonts as $f => $embed) { $font = PDF_findfont($p, $f, "host", $embed); PDF_setfont($p, $font, 25.0); PDF_continue_text($p, "{$f} (" . chr(128) . " Ç à á â ã ç è é ê)"); } 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_php.pdf"); echo $buf; PDF_delete($p);
PDF_show_xy($mypdf, "Online Bus Ticket", 200, 800); PDF_show_xy($mypdf, "Your Ticket Details", 70, 700); PDF_continue_text($mypdf, "Bus Details"); PDF_continue_text($mypdf, "Bus ID: " . $b[0] . " Bus Name:" . $b[1] . " From: " . $b[2] . " To: " . $b[3]); PDF_continue_text($mypdf, "Departure: " . $b[4] . " Arrival:" . $b[5] . " Type: " . $b[6] . "Seats:" . $b[7]); PDF_continue_text($mypdf, " Fare: " . $b[8] . " Facilities: " . $b[9] . " Stars: " . $b[10]); PDF_continue_text($mypdf, "==================================================================="); PDF_continue_text($mypdf, "Your Details"); PDF_continue_text($mypdf, "Your Name: " . $u[0] . " Email: " . $u[1] . " Mobile: " . $u[2] . " Address: " . $u[3]); PDF_continue_text($mypdf, "Country: " . $u[4] . " Gender: " . $u[5] . " BusID: " . $u[6] . " Bus Date: " . $u[7]); PDF_continue_text($mypdf, "Registration Date: " . $u[8] . " Your Seats: " . $u[9] . " Seats: " . $u[10]); PDF_continue_text($mypdf, "Price: " . $u[11] . " PNR: " . $u[12]); PDF_continue_text($mypdf, "==================================================================="); PDF_continue_text($mypdf, "IMPORTANT INFORMATION"); PDF_continue_text($mypdf, "No. of Seats: " . $u[9]); PDF_continue_text($mypdf, " Seats: " . $u[10]); PDF_continue_text($mypdf, "PNR: " . $u[12]); PDF_continue_text($mypdf, "==================================================================="); PDF_continue_text($mypdf, "Contact us : 9957809805"); PDF_continue_text($mypdf, "Terms and Conditions Apply"); PDF_continue_text($mypdf, "Visit www.01fes.com"); PDF_show_xy($mypdf, "HAPPY JOURNEY", 200, 400); PDF_end_page($mypdf); PDF_close($mypdf); $mybuf = PDF_get_buffer($mypdf); $mylen = strlen($mybuf); header("Content-type: application/pdf"); header("Content-Length: {$mylen}"); header("Content-Disposition: inline; filename=busticket4.pdf"); print $mybuf; PDF_delete($mypdf);
<?php $p = PDF_new(); PDF_open_file($p); PDF_set_info($p, "Creator", "hello.php"); PDF_set_info($p, "Author", "Rasmus Lerdorf"); PDF_set_info($p, "Title", "Hello world (PHP)"); PDF_begin_page($p, 595, 842); PDF_set_parameter($p, "FontOutline", "CANDY==/usr/share/fonts/truetype/CANDY.ttf"); $font = PDF_findfont($p, "CANDY", "host", 1); PDF_setfont($p, $font, 78.0); PDF_set_value($p, "textrendering", 2); PDF_setcolor($p, "fill", "rgb", 0.8, 0.8, 0); PDF_setcolor($p, "stroke", "rgb", 0, 0, 0.5); PDF_set_text_pos($p, 20, 780); PDF_continue_text($p, "� � � � � � � � �"); PDF_continue_text($p, "This is a test"); 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=candy.pdf"); echo $buf; PDF_delete($p);