ZF-1254: Improve Zend_Pdf Text-Functions
Description
Zend_Pdf currently only has a function drawText to draw Text at a specific position. For real-world usage it is every hard to work with this - as you have to calculate width and height of texts all the time (only possible ZF-313).
It would be nice to have Features like FPDF where you don't have to manually calculate everytime the y-position of the next line: - Write: http://www.fpdf.org/en/doc/write.htm - GetX/GetY: http://www.fpdf.org/en/doc/getx.htm http://www.fpdf.org/en/doc/gety.htm - SetX/SetY: http://www.fpdf.org/en/doc/setx.htm http://www.fpdf.org/en/doc/sety.htm
Another helpful FPDF-feature is helpfull wenn creating tables: - Cell: http://www.fpdf.org/en/doc/cell.htm - MultiCell: http://www.fpdf.org/en/doc/multicell.htm
Additionally there exists a FPDF-Addon which allows to switch the font in a line - without having to calculate x and y positions: - Flowing Block: http://www.fpdf.de/downloads/addons/65/
Zend_Pdf has has many features fpdf lacks, it would be very nice if we could use Zend_Pdf - a much better OO-Interface, fpdf is one big class - utf8-support - use ttf-fonts directly
thanks, niko
Comments
Posted by Bill Karwin (bkarwin) on 2007-04-12T16:06:20.000+0000
Assign to Alexander.
Posted by Alexander Veremyev (alexander) on 2007-05-25T02:48:51.000+0000
Depends on document representation model, which should be designed before.
Postponed to post-1.0 period
Posted by Logan Buesching (ljbuesch) on 2007-09-25T12:09:49.000+0000
I have recently created a class that emulates the FPDF cells. Currently, it is very basic but allows for creating of a cell, positioning the cell, and aligning text inside of the cell. I have attached a diff that creates the functionality. A small example is the following:
Posted by Logan Buesching (ljbuesch) on 2007-09-25T12:10:22.000+0000
Patch for a cell class that allows simple cell creation and text alignment.
Posted by Logan Buesching (ljbuesch) on 2007-11-29T17:24:31.000+0000
I have updated the Cell.php file and fixed a few things. Added borders and word wrapping.
Posted by Logan Buesching (ljbuesch) on 2008-03-19T21:50:20.000+0000
I have just finished up a proposal using the Zend_Pdf_Cell, any comments are welcome. The proposal may be viewed at at http://framework.zend.com/wiki/display/…
Posted by Wil Sinclair (wil) on 2008-03-25T22:06:45.000+0000
Resetting 'fix version priority' and 'fix version' to be re-evaluated for next release.
Posted by Willie Alberty (willie) on 2008-12-04T22:34:57.000+0000
Unassigning Zend_Pdf issues currently assigned to me pending decision on ZF 2.0 release timeframe and potential contribution of comprehensive changeset.
Posted by Wil Sinclair (wil) on 2008-12-08T17:00:48.000+0000
Alex, please take a look at this and resolve as necessary.
Posted by Philip Iezzi (iezzip) on 2009-08-01T02:39:21.000+0000
in _wordWrap() I've encountered endless loops resulting in a 500 server error in the following case: A word of 1 character length (e.g. "-") would be the last word in a cell. This one character would still fit the cell width but we are trying to addText() the word plus a space separator (" "), after having calculated the word's width based on the 1-character word. We end up getting stuck in the while-loop.
I can't explain it any smarter as I'm having trouble with this complex recursion. But I got a quick and dirty fix for this:
I have updated the attached Cell.php
Posted by Philip Iezzi (iezzip) on 2009-08-05T00:04:21.000+0000
besides, there was another bug I've fixed long time ago:
I've updated the attached Cell.php
Posted by Gerrit Kamp (gkamp) on 2010-01-07T14:40:41.000+0000
I really like the Zend PDF functionality. It's fast and stable. But I think many users would benefit from two key features: -Allow to parse HTML text (like here: http://fpdf.org/en/tutorial/tuto6.htm) -Allow to create tables (like above).
Are these types of functionality scheduled to be included in the core framework anytime soon? Without it, most PDF documents will look rather basic.
Posted by Peter Moolenaar (petermoolenaar) on 2010-01-22T03:48:57.000+0000
There is a proposal which has some very nice features related to this as well. http://framework.zend.com/wiki/display/…
Maybe an idea to implement that one?