<?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: Pixidou &#8211; an Open Source AJAX Image Editor (PHP and YUI based)</title>
	<atom:link href="http://htmlblog.net/pixidou-an-open-source-ajax-image-editor-php-and-yui-based/feed/" rel="self" type="application/rss+xml" />
	<link>http://htmlblog.net/pixidou-an-open-source-ajax-image-editor-php-and-yui-based/</link>
	<description>The web sandbox of Asvin Balloo</description>
	<lastBuildDate>Sat, 05 Feb 2011 17:04:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
	<item>
		<title>By: Lwangaman</title>
		<link>http://htmlblog.net/pixidou-an-open-source-ajax-image-editor-php-and-yui-based/comment-page-1/#comment-39650</link>
		<dc:creator>Lwangaman</dc:creator>
		<pubDate>Sat, 27 Mar 2010 00:12:37 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=37#comment-39650</guid>
		<description>I signed up to github seeing that forks can be made, so I can submit suggested code directly to the project...</description>
		<content:encoded><![CDATA[<p>I signed up to github seeing that forks can be made, so I can submit suggested code directly to the project&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lwangaman</title>
		<link>http://htmlblog.net/pixidou-an-open-source-ajax-image-editor-php-and-yui-based/comment-page-1/#comment-39648</link>
		<dc:creator>Lwangaman</dc:creator>
		<pubDate>Fri, 26 Mar 2010 23:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=37#comment-39648</guid>
		<description>I fixed it by switching the two imagecopy lines in the flip function in class.upload.php as follows:

// flip image
if ($gd_version &gt;= 2 &amp;&amp; !empty($this-&gt;image_flip)) {
    $this-&gt;image_flip = strtolower($this-&gt;image_flip);
    $this-&gt;log .= &#039;- flip image : &#039; . $this-&gt;image_flip . &#039;&#039;;
    $tmp = $this-&gt;imagecreatenew($this-&gt;image_dst_x, $this-&gt;image_dst_y);
    for ($x = 0; $x image_dst_x; $x++) {
        for ($y = 0; $y image_dst_y; $y++){
            if (strpos($this-&gt;image_flip, &#039;v&#039;) !== false) {
                imagecopy($tmp, $image_dst, $x, $this-&gt;image_dst_y - $y - 1, $x, $y, 1, 1);
            } else {
                imagecopy($tmp, $image_dst, $this-&gt;image_dst_x - $x - 1, $y, $x, $y, 1, 1);
            }
        }
    }
    // we transfert tmp into image_dst
    $image_dst = $this-&gt;imagetransfer($tmp, $image_dst);  
}</description>
		<content:encoded><![CDATA[<p>I fixed it by switching the two imagecopy lines in the flip function in class.upload.php as follows:</p>
<p>// flip image<br />
if ($gd_version &gt;= 2 &amp;&amp; !empty($this-&gt;image_flip)) {<br />
    $this-&gt;image_flip = strtolower($this-&gt;image_flip);<br />
    $this-&gt;log .= &#8216;- flip image : &#8216; . $this-&gt;image_flip . &#8221;;<br />
    $tmp = $this-&gt;imagecreatenew($this-&gt;image_dst_x, $this-&gt;image_dst_y);<br />
    for ($x = 0; $x image_dst_x; $x++) {<br />
        for ($y = 0; $y image_dst_y; $y++){<br />
            if (strpos($this-&gt;image_flip, &#8216;v&#8217;) !== false) {<br />
                imagecopy($tmp, $image_dst, $x, $this-&gt;image_dst_y &#8211; $y &#8211; 1, $x, $y, 1, 1);<br />
            } else {<br />
                imagecopy($tmp, $image_dst, $this-&gt;image_dst_x &#8211; $x &#8211; 1, $y, $x, $y, 1, 1);<br />
            }<br />
        }<br />
    }<br />
    // we transfert tmp into image_dst<br />
    $image_dst = $this-&gt;imagetransfer($tmp, $image_dst);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lwangaman</title>
		<link>http://htmlblog.net/pixidou-an-open-source-ajax-image-editor-php-and-yui-based/comment-page-1/#comment-39647</link>
		<dc:creator>Lwangaman</dc:creator>
		<pubDate>Fri, 26 Mar 2010 22:55:49 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=37#comment-39647</guid>
		<description>I just tried installing it to see what it&#039;s like, and I noticed that &quot;horizontal flip&quot; and &quot;vertical flip&quot; are inverted: a horizontal flip actually flips it vertically, and a vertical flip actually flips it horizontally.</description>
		<content:encoded><![CDATA[<p>I just tried installing it to see what it&#8217;s like, and I noticed that &#8220;horizontal flip&#8221; and &#8220;vertical flip&#8221; are inverted: a horizontal flip actually flips it vertically, and a vertical flip actually flips it horizontally.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Natalie Crowe</title>
		<link>http://htmlblog.net/pixidou-an-open-source-ajax-image-editor-php-and-yui-based/comment-page-1/#comment-35130</link>
		<dc:creator>Natalie Crowe</dc:creator>
		<pubDate>Thu, 05 Nov 2009 23:48:37 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=37#comment-35130</guid>
		<description>Hey there,
I&#039;m aware the demo is down, But I had seen it work previously. I was wondering are the sourcefiles at to how the demo was setup (having an original file when you access the image editor.) I&#039;d ideally like to have it as Garry said. &#039; pass an image url to the pixidou editor&#039; or even just the have someone point out the variable that contains the image once uploaded. 

i think it&#039;s $uploadedImage from the code so far. But I haven&#039;t been able to find any documentation on this. Any feedback would be great! 

Thanks in advance,</description>
		<content:encoded><![CDATA[<p>Hey there,<br />
I&#8217;m aware the demo is down, But I had seen it work previously. I was wondering are the sourcefiles at to how the demo was setup (having an original file when you access the image editor.) I&#8217;d ideally like to have it as Garry said. &#8216; pass an image url to the pixidou editor&#8217; or even just the have someone point out the variable that contains the image once uploaded. </p>
<p>i think it&#8217;s $uploadedImage from the code so far. But I haven&#8217;t been able to find any documentation on this. Any feedback would be great! </p>
<p>Thanks in advance,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Garry</title>
		<link>http://htmlblog.net/pixidou-an-open-source-ajax-image-editor-php-and-yui-based/comment-page-1/#comment-33654</link>
		<dc:creator>Garry</dc:creator>
		<pubDate>Fri, 25 Sep 2009 19:38:49 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=37#comment-33654</guid>
		<description>Greetings All,

I&#039;m a newbie and need some help.  I&#039;d like to be able to pass an image url to pixidou editor from my javascript or php, and I&#039;d like pixidou to display it in a div (or in a new browser window in case if div is not possible). Could anyone point me to a place where I can learn how to do about  or simply could someone who has done this already can share al fragment of that code. Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Greetings All,</p>
<p>I&#8217;m a newbie and need some help.  I&#8217;d like to be able to pass an image url to pixidou editor from my javascript or php, and I&#8217;d like pixidou to display it in a div (or in a new browser window in case if div is not possible). Could anyone point me to a place where I can learn how to do about  or simply could someone who has done this already can share al fragment of that code. Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pixidou&#8212;一个简单的开源Ajax图片编辑器(基于PHP和YUI2)</title>
		<link>http://htmlblog.net/pixidou-an-open-source-ajax-image-editor-php-and-yui-based/comment-page-1/#comment-32387</link>
		<dc:creator>pixidou&#8212;一个简单的开源Ajax图片编辑器(基于PHP和YUI2)</dc:creator>
		<pubDate>Wed, 12 Aug 2009 05:29:49 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=37#comment-32387</guid>
		<description>[...] Asvin Balloo开发了一个基于Web的简单图片编辑器pixidou，这里是demo，以及在Github的源码 [...]</description>
		<content:encoded><![CDATA[<p>[...] Asvin Balloo开发了一个基于Web的简单图片编辑器pixidou，这里是demo，以及在Github的源码 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: In the Wild for August 10, 2009 &#187; Yahoo! User Interface Blog</title>
		<link>http://htmlblog.net/pixidou-an-open-source-ajax-image-editor-php-and-yui-based/comment-page-1/#comment-32352</link>
		<dc:creator>In the Wild for August 10, 2009 &#187; Yahoo! User Interface Blog</dc:creator>
		<pubDate>Tue, 11 Aug 2009 14:37:41 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=37#comment-32352</guid>
		<description>[...] have posted a brief introduction to the YUI Animation Utility, including a set of examples.Asvin Ballou&#8217;s Pixidou &#8212; Image Editor Made with YUI and PHP: We missed this one awhile back when it came out, but it&#8217;s interesting and worth a [...]</description>
		<content:encoded><![CDATA[<p>[...] have posted a brief introduction to the YUI Animation Utility, including a set of examples.Asvin Ballou&#8217;s Pixidou &#8212; Image Editor Made with YUI and PHP: We missed this one awhile back when it came out, but it&#8217;s interesting and worth a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pixidou AJAX Image Editor for your website &#124; InfoMatterz</title>
		<link>http://htmlblog.net/pixidou-an-open-source-ajax-image-editor-php-and-yui-based/comment-page-1/#comment-29757</link>
		<dc:creator>Pixidou AJAX Image Editor for your website &#124; InfoMatterz</dc:creator>
		<pubDate>Thu, 11 Jun 2009 12:52:54 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=37#comment-29757</guid>
		<description>[...] [Pixidou]   Share and Enjoy: [...]</description>
		<content:encoded><![CDATA[<p>[...] [Pixidou]   Share and Enjoy: [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: smoke</title>
		<link>http://htmlblog.net/pixidou-an-open-source-ajax-image-editor-php-and-yui-based/comment-page-1/#comment-27495</link>
		<dc:creator>smoke</dc:creator>
		<pubDate>Thu, 07 May 2009 08:14:05 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=37#comment-27495</guid>
		<description>wow! it is simple and easy use</description>
		<content:encoded><![CDATA[<p>wow! it is simple and easy use</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: allen</title>
		<link>http://htmlblog.net/pixidou-an-open-source-ajax-image-editor-php-and-yui-based/comment-page-1/#comment-14728</link>
		<dc:creator>allen</dc:creator>
		<pubDate>Mon, 23 Feb 2009 16:13:06 +0000</pubDate>
		<guid isPermaLink="false">http://htmlblog.net/?p=37#comment-14728</guid>
		<description>Where is the tar ball or zip file? It would help if the download link pointed to one file. IE wants to change the extension of every file and saves directories to html pages.
Thanks,</description>
		<content:encoded><![CDATA[<p>Where is the tar ball or zip file? It would help if the download link pointed to one file. IE wants to change the extension of every file and saves directories to html pages.<br />
Thanks,</p>
]]></content:encoded>
	</item>
</channel>
</rss>

