6

I've been handed a project that utilizes the ezpdf class to generate PDF files. Problem is, I can't seem to find any documentation on it on the net.

I've figured out most of changes that my bosses want implemented by looking into the code itself. What I couldn't figure out is how to change the background color of a table headers.

Can anyone point me to the right direction?

hakre
  • 193,403
  • 52
  • 435
  • 836
rgin
  • 2,291
  • 4
  • 24
  • 32
  • http://pdf-php.sourceforge.net/pdf-php/readme.php ? I'm not sure if this what you are using but it does look like it might be... – DaveRandom Jun 27 '12 at 09:05
  • I've seen that. Unfortunately, there's nothing in there that I could use to solve my problem. – rgin Jun 27 '12 at 10:19
  • How much code are we talking about? Any scope for porting it to [FPDF](http://www.fpdf.org/), which is well documented and well maintained? – DaveRandom Jun 27 '12 at 10:27
  • If I could I would've ported this to FPDF right away. Unfortunately, that doesn't seem to be an option right now. I'll have to work with what I currently have. – rgin Jun 27 '12 at 10:50
  • I was also wondering what happened to this library as I used it back in 2002. It was a wrapper around class.pdf.php and was distributed in two files, "class.pdf.php" and "class.ezpdf.php". The version that I have is labelled version 009. It seems that this was included in php Pear (https://pear.php.net/reference/PhpDocumentor-latest/Cpdf/Cezpdf.html). I also managed to find sources for this over here: http://pdf-php.sourceforge.net/index.php/documentation.html and http://sourceforge.net/projects/pdf-php/files/ – BruceHill Mar 06 '15 at 13:21

1 Answers1

8

It appears that the eZ PDF Library is deprecated as of 4.x (doc.ez.no). However if you visit pubsvn.ez.no you will find some documentation generated from the code. If you are doing this all from the templates then the template pdf functions which use the eZPDF library should still work, look here for documentation.

harmstyler
  • 1,381
  • 11
  • 20