<?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: jQuery Image Cropper with Uploader v1.1</title>
	<atom:link href="http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/</link>
	<description>Useful resources and inspiration for creative minds</description>
	<lastBuildDate>Wed, 08 Feb 2012 19:26:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: nonab</title>
		<link>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/comment-page-2/#comment-309808</link>
		<dc:creator>nonab</dc:creator>
		<pubDate>Tue, 06 Dec 2011 08:57:49 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=773#comment-309808</guid>
		<description>anyone else having a problem that on localhost everything works fine but when you put it on a server after image uploads crop window doesn&#039;t appear? the temp file is uploaded in right place, i checked... i have newest class_upload.php and it&#039;s tested on localhost (xampp)</description>
		<content:encoded><![CDATA[<p>anyone else having a problem that on localhost everything works fine but when you put it on a server after image uploads crop window doesn&#8217;t appear? the temp file is uploaded in right place, i checked&#8230; i have newest class_upload.php and it&#8217;s tested on localhost (xampp)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nonab</title>
		<link>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/comment-page-2/#comment-309806</link>
		<dc:creator>nonab</dc:creator>
		<pubDate>Tue, 06 Dec 2011 08:56:28 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=773#comment-309806</guid>
		<description>@OVERFLO: yes i did. you need to change a few things. first the preview div css:
			.preview_container{
				width:122px;
				height:168px;

then in uploadify 
					&#039;width&#039;			 : &#039;122&#039;,
&#039;height&#039;		 : &#039;168&#039;,

in jcrop part of code

aspectRatio: 122 / 168,

in function showPreview

var rx = 122 / coords.w;
var ry = 168 / coords.h;

and right below that function

$imgpos = {
width	: &#039;122&#039;,
height	: &#039;168&#039;

in crop.php
				$handle-&gt;image_x                 = 122; //size of final picture
				$handle-&gt;image_y                 = 168; //size of final picture

and you&#039;re done:)</description>
		<content:encoded><![CDATA[<p>@OVERFLO: yes i did. you need to change a few things. first the preview div css:<br />
			.preview_container{<br />
				width:122px;<br />
				height:168px;</p>
<p>then in uploadify<br />
					&#8216;width&#8217;			 : &#8217;122&#8242;,<br />
&#8216;height&#8217;		 : &#8217;168&#8242;,</p>
<p>in jcrop part of code</p>
<p>aspectRatio: 122 / 168,</p>
<p>in function showPreview</p>
<p>var rx = 122 / coords.w;<br />
var ry = 168 / coords.h;</p>
<p>and right below that function</p>
<p>$imgpos = {<br />
width	: &#8217;122&#8242;,<br />
height	: &#8217;168&#8242;</p>
<p>in crop.php<br />
				$handle-&gt;image_x                 = 122; //size of final picture<br />
				$handle-&gt;image_y                 = 168; //size of final picture</p>
<p>and you&#8217;re done:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/comment-page-2/#comment-237598</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Fri, 28 Oct 2011 19:34:04 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=773#comment-237598</guid>
		<description>I basically had the same problem as KALIMUKTI.  I updated the class.upload.php file but the final cropped picture isn&#039;t coming out right</description>
		<content:encoded><![CDATA[<p>I basically had the same problem as KALIMUKTI.  I updated the class.upload.php file but the final cropped picture isn&#8217;t coming out right</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/comment-page-2/#comment-237584</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Fri, 28 Oct 2011 19:18:43 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=773#comment-237584</guid>
		<description>Hi, very interesting code …
I’ve had more or less the same problems as the others
and indeed, changing the class.upload.php by the one there: http://www.phpclasses.org/browse/file/8831.html worked for me
Besides, changing the paths in crop.php (for “$handle = new Upload(…” and both “handle-&gt;Process(…” allowed me to put the images where I wanted…
I’m stuck with one last prob: the crop doesnt work. It saves the image in 100×100 but the entire image, not the protion I select…
any clue as to why ?
km</description>
		<content:encoded><![CDATA[<p>Hi, very interesting code …<br />
I’ve had more or less the same problems as the others<br />
and indeed, changing the class.upload.php by the one there: <a href="http://www.phpclasses.org/browse/file/8831.html" rel="nofollow">http://www.phpclasses.org/browse/file/8831.html</a> worked for me<br />
Besides, changing the paths in crop.php (for “$handle = new Upload(…” and both “handle-&gt;Process(…” allowed me to put the images where I wanted…<br />
I’m stuck with one last prob: the crop doesnt work. It saves the image in 100×100 but the entire image, not the protion I select…<br />
any clue as to why ?<br />
km</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Overflo</title>
		<link>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/comment-page-2/#comment-234912</link>
		<dc:creator>Overflo</dc:creator>
		<pubDate>Wed, 26 Oct 2011 21:00:54 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=773#comment-234912</guid>
		<description>Hi everyone!
This is a really interresting script here.
But I was wondering if anyone succeded to change the ratio (I need to crop a rectangle)?</description>
		<content:encoded><![CDATA[<p>Hi everyone!<br />
This is a really interresting script here.<br />
But I was wondering if anyone succeded to change the ratio (I need to crop a rectangle)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nikolas</title>
		<link>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/comment-page-2/#comment-221287</link>
		<dc:creator>Nikolas</dc:creator>
		<pubDate>Sun, 16 Oct 2011 20:24:47 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=773#comment-221287</guid>
		<description>Hi, how can we use this script with more than 1 images?</description>
		<content:encoded><![CDATA[<p>Hi, how can we use this script with more than 1 images?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hups</title>
		<link>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/comment-page-2/#comment-199224</link>
		<dc:creator>hups</dc:creator>
		<pubDate>Fri, 30 Sep 2011 15:52:34 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=773#comment-199224</guid>
		<description>ohh man what is that .

when i take the crop folder i a subfolder the thumbs are not save 

can anyone give me the current code i have the demo files .

where is the docu of this 

please help me</description>
		<content:encoded><![CDATA[<p>ohh man what is that .</p>
<p>when i take the crop folder i a subfolder the thumbs are not save </p>
<p>can anyone give me the current code i have the demo files .</p>
<p>where is the docu of this </p>
<p>please help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hups</title>
		<link>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/comment-page-2/#comment-198799</link>
		<dc:creator>hups</dc:creator>
		<pubDate>Fri, 30 Sep 2011 08:34:29 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=773#comment-198799</guid>
		<description>Hello can anybody tell me what must i do .

everyone when upload a image is only one picture in destinaten call Picture.jpg

what must i change for upload image</description>
		<content:encoded><![CDATA[<p>Hello can anybody tell me what must i do .</p>
<p>everyone when upload a image is only one picture in destinaten call Picture.jpg</p>
<p>what must i change for upload image</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tagazok</title>
		<link>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/comment-page-2/#comment-189682</link>
		<dc:creator>Tagazok</dc:creator>
		<pubDate>Fri, 23 Sep 2011 11:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=773#comment-189682</guid>
		<description>Hello,

I searched on the blog but couldn&#039; find. On which licence are the code in the tutorials? 
Can we use your code in commercial projects?
Thanks :)</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I searched on the blog but couldn&#8217; find. On which licence are the code in the tutorials?<br />
Can we use your code in commercial projects?<br />
Thanks :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kalimukti</title>
		<link>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/comment-page-2/#comment-157464</link>
		<dc:creator>kalimukti</dc:creator>
		<pubDate>Fri, 19 Aug 2011 00:09:13 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=773#comment-157464</guid>
		<description>edit:
if you work on the class.upload.php donwloaded here: http://www.phpclasses.org/browse/file/8831.html ,
to cropt the image, change the code in crop.php from
$handle-&gt;rect_w                  = $_POST[&#039;w&#039;]; 
				$handle-&gt;rect_h                  = $_POST[&#039;h&#039;]; 
				$handle-&gt;posX                    = $_POST[&#039;x&#039;]; 
				$handle-&gt;posY                    = $_POST[&#039;y&#039;];

to
$handle-&gt;image_crop 			 = array(
															$_POST[&#039;y&#039;],
															($handle-&gt;image_src_x-$_POST[&#039;x&#039;]-$_POST[&#039;w&#039;]),
															($handle-&gt;image_src_y-$_POST[&#039;y&#039;]-$_POST[&#039;h&#039;]),
															$_POST[&#039;x&#039;]
														);
it works for me :)</description>
		<content:encoded><![CDATA[<p>edit:<br />
if you work on the class.upload.php donwloaded here: <a href="http://www.phpclasses.org/browse/file/8831.html" rel="nofollow">http://www.phpclasses.org/browse/file/8831.html</a> ,<br />
to cropt the image, change the code in crop.php from<br />
$handle-&gt;rect_w                  = $_POST['w'];<br />
				$handle-&gt;rect_h                  = $_POST['h'];<br />
				$handle-&gt;posX                    = $_POST['x'];<br />
				$handle-&gt;posY                    = $_POST['y'];</p>
<p>to<br />
$handle-&gt;image_crop 			 = array(<br />
															$_POST['y'],<br />
															($handle-&gt;image_src_x-$_POST['x']-$_POST['w']),<br />
															($handle-&gt;image_src_y-$_POST['y']-$_POST['h']),<br />
															$_POST['x']<br />
														);<br />
it works for me :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- This Quick Cache file was built for (  tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/feed/ ) in 0.20485 seconds, on Feb 9th, 2012 at 12:01 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 9th, 2012 at 1:01 am UTC -->
