Home
Name Modified Size InfoDownloads / Week
0.12.63 2020-09-20
0.12.62 2020-04-12
0.12.61 2020-04-05
0.12.60 2020-02-10
0.12.58 2019-10-16
0.12.57 2019-09-25
0.12.56 2019-09-21
0.12.55 2019-08-03
0.12.54 2019-07-31
0.12.53 2019-07-17
0.12.52 2019-06-05
0.12 2014-12-15
0.11 2014-04-30
v 010 with Fonts 2009-09-23
v 009e with Fonts 2003-03-20
v 009e 2003-03-20
v 009b 2002-11-11
v 009b with fonts 2002-11-11
v 009 2002-11-10
v 009 with fonts 2002-11-10
v 008a 2002-04-30
v 007 2002-04-15
readme.txt 2014-12-15 1.3 kB
Totals: 23 Items   1.3 kB 4
--- CURRENT RELEASE CANDIDATE

 Use SVN to checkout from 
 svn://svn.code.sf.net/p/pdf-php/code/trunk
 
 Manual and change log can be found here:
 http://pdf-php.sf.net/pdf-php-code/readme.php 
 
 Example usage:
 
 <?php
	include 'Cezpdf.php';
	// initialize a ROS PDF class object using DIN-A4, with background color gray
	$pdf = new Cezpdf('a4','portrait','color',array(0.8,0.8,0.8));
	// set pdf Bleedbox
	$pdf->ezSetMargins(20,20,20,20);
	//use one of the pdf core fonts
	$mainFont = 'Times-Roman';
	// select the font
	$pdf->selectFont($mainFont);
	// define the font size
	$size=12;
	// modified to use the local file if it can
	$pdf->openHere('Fit');

	// Output some colored text by using text directives and justify it to the right of the document
	$pdf->ezText("PDF with some <c:color:1,0,0>blue</c:color> <c:color:0,1,0>red</c:color> and <c:color:0,0,1>green</c:color> colours", $size, array('justification'=>'right'));
	// output the pdf as stream, but uncompress
	$pdf->ezStream(array('compress'=>0));
 ?>
 

--- EXPERIMENTAL

 ROS PDF OBJECT ORIENTED CLASS - version 0.13.0
 This ROS-OO PDF class is completely  reprogrammed
 (except some image related methods) to fully support php5 object orientation
 
 Some Examples (01-11) can be found here:
 http://pdf-php.sourceforge.net/pdf-php-experimental/examples/
Source: readme.txt, updated 2014-12-15