DZNPhotoPickerController icon indicating copy to clipboard operation
DZNPhotoPickerController copied to clipboard

when using cropMode and cropSize, images have a blurry/fuzzy look to it.

Open farhan-syed opened this issue 9 years ago • 0 comments

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.

farhan-syed avatar Mar 26 '16 19:03 farhan-syed