I wanted to create a functionality as of facebook profile picture using codeigniter
where user can select the part of the image to be displayed as profile pic can anyone guide me on that
Any efforts would be appreciated.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
CodeIgniter has support for image cropping:
http://codeigniter.com/user_guide/libraries/image_lib.html
CI supports GD/GD2, NetPBM, and ImageMagick:
http://php.net/manual/en/book.image.php
http://netpbm.sourceforge.net/
http://www.imagemagick.org/
Here are some manual ImageMagick examples:
http://www.imagemagick.org/Usage/crop/
In PHP, ImageMagick may be executed using the
execfunction:PS. The UI is a different story!