DZNPhotoPickerController
DZNPhotoPickerController copied to clipboard
when using cropMode and cropSize, images have a blurry/fuzzy look to it.
im using my code like so
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.allowsEditing = YES;
imagePicker.cropMode = DZNPhotoEditorViewControllerCropModeSquare;
imagePicker.cropSize = CGSizeMake(self.view.frame.size.width, 400);
[imagePicker.navigationBar setTintColor:[UIColor blackColor]];
imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
imagePicker.mediaTypes = [NSArray arrayWithObjects:(NSString *)kUTTypeImage, nil];
[self presentViewController:imagePicker animated:YES completion:nil];
im uploading the data from taking it frominfo[UIImagePickerControllerEditedImage];
*when i remove cropMode and cropSize, it its a clear image.