When we get an image from the ios album by default it always gets clipped.
Whereas if we use the UIImagePickerControllerOriginalImage, then it is too big.
(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
UIImage*temp =[info objectForKey:UIImagePickerControllerEditedImage];
}
Is there any good method to edit the Image without clipping it's range?