This extension helps you resize and crop an image as the following :
protected/extensionsSee the following code example:
Yii::import('application.extensions.imagecropper.ImageCropper'); $cropper=new ImageCroppe; //The following will create an JPEG image with height of 100 and width of 100 and 80 jpeg quality. $cropper->resize_and_crop($original_image_path, $dist_image_path, 100, 100, 80 );
Total 1 comment
Leave a comment
Please login to leave your comment.