I can pick the image from gallery and then crop the image but it becomes too low quality.
CGRect value= AVMakeRectWithAspectRatioInsideRect(imageView.image.size, imageView.frame);
UIGraphicsBeginImageContext(imageView.image.size);
[imageView.image drawInRect:CGRectMake(0,0, value.size.width, value.size.height)];
UIImage *img= UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
Please any one help me figure out this issue.