CodeIgniter Forums
Photo Upload - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Photo Upload (/showthread.php?tid=33589)



Photo Upload - El Forum - 09-01-2010

[eluser]sree777[/eluser]
Is it possible to upload the image with the crop option n codeigniter


Photo Upload - El Forum - 09-01-2010

[eluser]eoinmcg[/eluser]
it's built into the image manipulation library:

Code:
$this->image_lib->crop()

read more about it here: http://ellislab.com/codeigniter/user-guide/libraries/image_lib.html

as the userguide states you'll need to build some kind of visual interface. no need to reinvent the wheel though. take a look at jcrop: http://code.google.com/p/jcrop/

hope that helps