<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Zend Pdf Cell</title>
	<atom:link href="http://agoln.net/archives/81/feed" rel="self" type="application/rss+xml" />
	<link>http://agoln.net/archives/81</link>
	<description>Development and personal site</description>
	<lastBuildDate>Wed, 10 Mar 2010 01:49:06 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Vinz</title>
		<link>http://agoln.net/archives/81/comment-page-1#comment-4481</link>
		<dc:creator>Vinz</dc:creator>
		<pubDate>Wed, 29 Jul 2009 13:07:06 +0000</pubDate>
		<guid isPermaLink="false">http://agoln.net/archives/81#comment-4481</guid>
		<description>It&#039;s a very bad thing to put class attributes in private mode.
This class is useless for me, since I can&#039;t access attributes from a subclass...

Private mode is very restrictive and I use protected mode as often as I can.</description>
		<content:encoded><![CDATA[<p>It&#8217;s a very bad thing to put class attributes in private mode.<br />
This class is useless for me, since I can&#8217;t access attributes from a subclass&#8230;</p>
<p>Private mode is very restrictive and I use protected mode as often as I can.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chuck</title>
		<link>http://agoln.net/archives/81/comment-page-1#comment-4436</link>
		<dc:creator>chuck</dc:creator>
		<pubDate>Fri, 13 Feb 2009 17:12:12 +0000</pubDate>
		<guid isPermaLink="false">http://agoln.net/archives/81#comment-4436</guid>
		<description>Okay, I can confirm that Cell seems to work fine with ZF 1.7, it was an error on my part: be sure to set the page font /before/ passing the page to the Cell constructor, folks.

Is there any way you could show us an example of how to explicitly set one coordinate of the cell&#039;s position while using one of the class&#039;s positioning constants for the other (i.e. I need centered text at y=440)?</description>
		<content:encoded><![CDATA[<p>Okay, I can confirm that Cell seems to work fine with ZF 1.7, it was an error on my part: be sure to set the page font /before/ passing the page to the Cell constructor, folks.</p>
<p>Is there any way you could show us an example of how to explicitly set one coordinate of the cell&#8217;s position while using one of the class&#8217;s positioning constants for the other (i.e. I need centered text at y=440)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chuck</title>
		<link>http://agoln.net/archives/81/comment-page-1#comment-4435</link>
		<dc:creator>chuck</dc:creator>
		<pubDate>Fri, 13 Feb 2009 16:56:09 +0000</pubDate>
		<guid isPermaLink="false">http://agoln.net/archives/81#comment-4435</guid>
		<description>Actually, never mind... I&#039;m getting the same error with ZF 1.6 and ZF 1.5, using the 1.5 version of Cell.  Something else is going on.</description>
		<content:encoded><![CDATA[<p>Actually, never mind&#8230; I&#8217;m getting the same error with ZF 1.6 and ZF 1.5, using the 1.5 version of Cell.  Something else is going on.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chuck</title>
		<link>http://agoln.net/archives/81/comment-page-1#comment-4434</link>
		<dc:creator>chuck</dc:creator>
		<pubDate>Fri, 13 Feb 2009 16:45:24 +0000</pubDate>
		<guid isPermaLink="false">http://agoln.net/archives/81#comment-4434</guid>
		<description>I&#039;m getting the same error as wladik above (“Fatal error: Call to a member function glyphNumbersForCharacters() on a non-object in Zend\Pdf\Cell.php on line 604) using either the 1.0 or 1.5 versions of Cell.php with ZF 1.7.</description>
		<content:encoded><![CDATA[<p>I&#8217;m getting the same error as wladik above (“Fatal error: Call to a member function glyphNumbersForCharacters() on a non-object in Zend\Pdf\Cell.php on line 604) using either the 1.0 or 1.5 versions of Cell.php with ZF 1.7.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mila76</title>
		<link>http://agoln.net/archives/81/comment-page-1#comment-4329</link>
		<dc:creator>Mila76</dc:creator>
		<pubDate>Sun, 18 Jan 2009 08:45:40 +0000</pubDate>
		<guid isPermaLink="false">http://agoln.net/archives/81#comment-4329</guid>
		<description>The patch have an error:

from:
public function getHeight() {
return $this-&gt;_height;
if ($this-&gt;isAutoWidth())

to:
public function getHeight() {
return $this-&gt;_height;
if ($this-&gt;isAutoHeight())

I have many crash with small cell and large word
i send new ideas to logan email</description>
		<content:encoded><![CDATA[<p>The patch have an error:</p>
<p>from:<br />
public function getHeight() {<br />
return $this-&gt;_height;<br />
if ($this-&gt;isAutoWidth())</p>
<p>to:<br />
public function getHeight() {<br />
return $this-&gt;_height;<br />
if ($this-&gt;isAutoHeight())</p>
<p>I have many crash with small cell and large word<br />
i send new ideas to logan email</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dominik</title>
		<link>http://agoln.net/archives/81/comment-page-1#comment-4192</link>
		<dc:creator>Dominik</dc:creator>
		<pubDate>Tue, 02 Dec 2008 17:11:19 +0000</pubDate>
		<guid isPermaLink="false">http://agoln.net/archives/81#comment-4192</guid>
		<description>Hi Logan. I really like your class, but I&#039;m afraid it still needs quite a lot of bugfixes until it can be considered &quot;production ready&quot;. It works good enough for my requirements, though.

I had to include some fixes for international character support, though. When an &quot;UTF-8&quot; string has to be &quot;wordwrapped&quot; it&#039;s loosing characters.

I have changed some functions to fix that bug. Going to send the fixed file to you by email.</description>
		<content:encoded><![CDATA[<p>Hi Logan. I really like your class, but I&#8217;m afraid it still needs quite a lot of bugfixes until it can be considered &#8220;production ready&#8221;. It works good enough for my requirements, though.</p>
<p>I had to include some fixes for international character support, though. When an &#8220;UTF-8&#8243; string has to be &#8220;wordwrapped&#8221; it&#8217;s loosing characters.</p>
<p>I have changed some functions to fix that bug. Going to send the fixed file to you by email.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ianaré</title>
		<link>http://agoln.net/archives/81/comment-page-1#comment-4140</link>
		<dc:creator>ianaré</dc:creator>
		<pubDate>Tue, 07 Oct 2008 15:44:55 +0000</pubDate>
		<guid isPermaLink="false">http://agoln.net/archives/81#comment-4140</guid>
		<description>Thanks for putting this out there, it works OK on Zend 1.5.3.

Couple things though :

1) You should automatically drop a line when encountering the newline character.

2) Absolute cell positioning option would be very helpful.</description>
		<content:encoded><![CDATA[<p>Thanks for putting this out there, it works OK on Zend 1.5.3.</p>
<p>Couple things though :</p>
<p>1) You should automatically drop a line when encountering the newline character.</p>
<p>2) Absolute cell positioning option would be very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David M</title>
		<link>http://agoln.net/archives/81/comment-page-1#comment-4126</link>
		<dc:creator>David M</dc:creator>
		<pubDate>Fri, 03 Oct 2008 01:04:56 +0000</pubDate>
		<guid isPermaLink="false">http://agoln.net/archives/81#comment-4126</guid>
		<description>Not working with ZF 1.6. 
Was able to fix it by removing 
&quot;cmap-&gt;&quot;
from line 604.</description>
		<content:encoded><![CDATA[<p>Not working with ZF 1.6.<br />
Was able to fix it by removing<br />
&#8220;cmap-&gt;&#8221;<br />
from line 604.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Hartmann</title>
		<link>http://agoln.net/archives/81/comment-page-1#comment-4063</link>
		<dc:creator>Daniel Hartmann</dc:creator>
		<pubDate>Wed, 17 Sep 2008 09:52:26 +0000</pubDate>
		<guid isPermaLink="false">http://agoln.net/archives/81#comment-4063</guid>
		<description>i&#039;ll also need this patch? could you post it here?</description>
		<content:encoded><![CDATA[<p>i&#8217;ll also need this patch? could you post it here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike De Smet</title>
		<link>http://agoln.net/archives/81/comment-page-1#comment-3816</link>
		<dc:creator>Mike De Smet</dc:creator>
		<pubDate>Thu, 07 Aug 2008 07:51:07 +0000</pubDate>
		<guid isPermaLink="false">http://agoln.net/archives/81#comment-3816</guid>
		<description>Hi Bernhard,

As I have encountered the same problem, I have mailed Logan a patch for this bug. I hope he releases/publishes it soon. I can&#039;t post it here as the stripslashes function he calls on each post will corrupt the code. Leave your mail address on here and I&#039;ll send it to you by mail...

Greets,
Mike De Smet</description>
		<content:encoded><![CDATA[<p>Hi Bernhard,</p>
<p>As I have encountered the same problem, I have mailed Logan a patch for this bug. I hope he releases/publishes it soon. I can&#8217;t post it here as the stripslashes function he calls on each post will corrupt the code. Leave your mail address on here and I&#8217;ll send it to you by mail&#8230;</p>
<p>Greets,<br />
Mike De Smet</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.697 seconds -->
