The Server Pages
:: TSP Menu
- Home
- Authors
- Glossary
- RSS Feed

:: Servers
- CPanel
- Hosting
- Linux
- Windows

:: Webmaster
- Databases
- Design
- PHP
- Search Engines

:: Scripts
- Scripts

:: Documentation
- PHP Manual

:: Other
- Errors & Solutions
- TechPunt
- Wojjie

search for in the

PDF_open_ccitt> <PDF_moveto
[edit] Last updated: Sat, 12 May 2012

view this page in

PDF_new

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)

PDF_newCreate PDFlib object

Description

resource PDF_new ( void )

Creates a new PDFlib object with default settings.



add a note add a note User Contributed Notes PDF_new
Justin 09-Nov-2008 06:36
<?php
// create handle for new PDF document
$pdf = pdf_new();
// open a file
pdf_open_file($pdf, "test.pdf");
// start a new page (A4)
pdf_begin_page($pdf, 595, 842);
// get and use a font object
$arial = pdf_findfont($pdf, "Arial", "host", 1); pdf_setfont($pdf, $arial, 10);
// print 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);
// end page
pdf_end_page($pdf);
// close and save file
pdf_close($pdf);
?>

 
show source | credits | sitemap | contact | advertising | mirror sites