I need edit my Images before they import to the app but after editing the image reduces some quality how can avoid this ?
- (void) imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
[self dismissModalViewControllerAnimated:YES];
imgEdited.image = [info objectForKey:UIImagePickerControllerEditedImage];
}
You can edit ur image. Try this it may work for your application.Thanks!