<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Codrops &#187; crop</title>
	<atom:link href="http://tympanus.net/codrops/tag/crop/feed/" rel="self" type="application/rss+xml" />
	<link>http://tympanus.net/codrops</link>
	<description>Useful resources and inspiration for creative minds</description>
	<lastBuildDate>Mon, 06 Feb 2012 07:30:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>jQuery Image Cropper with Uploader v1.1</title>
		<link>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/</link>
		<comments>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 01:03:58 +0000</pubDate>
		<dc:creator>chadking</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[crop]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=773</guid>
		<description><![CDATA[Here&#8217;s an updated version of the Image Cropper. The upload button was replaced by an overlay on the image. There are also some extra functionalities : invert the picture colors rotate the image sepia transforms an image into greyscale see the DEMO download the source code here]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-785 aligncenter" title="crop1_1" src="http://tympanus.net/codrops/wp-content/uploads/2009/11/crop1_11.png" alt="crop1_1" width="470" height="320" /></p>
<p>Here&#8217;s an updated version of the Image Cropper. The upload button was replaced by an overlay on the image. There are also some extra functionalities :</p>
<p><span id="more-773"></span></p>
<ul>
<li>invert the picture colors</li>
<li>rotate the image</li>
<li>sepia</li>
<li>transforms an image into greyscale</li>
</ul>
<p>see the <a href="http://tympanus.net/crop1.1/" target="_blank">DEMO</a><br />
download the source code <a href="http://tympanus.net/codrops/wp-content/uploads/2009/10/crop1.1.zip">here</a></p>
<p><div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div><div style="clear:both;"></div><br />
<br/><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>jQuery Image Cropper with Uploader</title>
		<link>http://tympanus.net/codrops/2009/10/17/jquery-image-cropper-with-uploader/</link>
		<comments>http://tympanus.net/codrops/2009/10/17/jquery-image-cropper-with-uploader/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 16:49:52 +0000</pubDate>
		<dc:creator>chadking</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[crop]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://tympanus.net/codrops/?p=692</guid>
		<description><![CDATA[Please check the updated version here! Some time ago I posted the Dynamic jQuery Image Gallery with Uploader which uses the class.upload, uploadify and ad-gallery scripts. This time I want to show how to integrate the class.upload and uploadify with the Jcrop script. The idea is that the user uploads a picture,  selects which area [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-694" title="jquery_cropper" src="http://tympanus.net/codrops/wp-content/uploads/2009/10/jquery_cropper1.jpg" alt="jquery_cropper" width="533" height="266" /></p>
<p style="text-align: center;"><strong>Please check the updated version <a href="http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/" target="_blank">here</a>!</strong></p>
<p>Some time ago I posted the <a href="http://tympanus.net/codrops/2009/09/13/dynamic-jquery-image-gallery-with-uploader/#more-426" target="_blank">Dynamic jQuery Image Gallery with Uploader</a> which uses the class.upload, uploadify and ad-gallery scripts. This time I want to show how to integrate the class.upload and uploadify with the <a href="http://deepliquid.com/content/Jcrop.html" target="_blank">Jcrop</a> script.</p>
<p>The idea is that the user uploads a picture,  selects which area to crop and saves it under a specific directory.<br />
The process then creates two images, one 100&#215;100 and a thumbnail of 50&#215;50. You can easly change the script to create the amount of pictures and sizes you need!</p>
<p><span id="more-692"></span>The example here is limited to .jpg images and no more than 800 kb. If you want to add more file types and increase the size, you can configure it when you call the uploadify script (index.php):</p>
<p><code>'fileExt'         : '*.jpg',<br />
'sizeLimit'      : '819200',//max size bytes - 800kb</code></p>
<p>and in upload.php:</p>
<p><code>$handle-&gt;file_max_size 			 = '819200'; // max size</code></p>
<p>Note that an usual error is due to the configuration of the &#8220;memory_limit&#8221; in php.ini. You should increase this value if you expect to upload larger images.</p>
<p>see the <a href="http://tympanus.net/crop/" target="_blank">DEMO</a><br />
download the source code <a href="http://tympanus.net/codrops/wp-content/uploads/2009/10/crop.zip">here</a><br />
<strong>Please check the updated version <a href="http://tympanus.net/codrops/2009/11/04/jquery-image-cropper-with-uploader-v1-1/" target="_blank">here</a>!</strong></p>
<p><div id="bsap_1266918" class="bsarocks bsap_af25dfd2f1908889af7a1aa5f4dcbd9e"></div><div style="clear:both;"></div><br />
<br/><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://tympanus.net/codrops/2009/10/17/jquery-image-cropper-with-uploader/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  tympanus.net/codrops/tag/crop/feed/ ) in 0.19809 seconds, on Feb 7th, 2012 at 12:03 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 7th, 2012 at 1:03 pm UTC -->
