BJImageCropper
BJImageCropper copied to clipboard
A simple UIView subclass that allows a user to crop an image. If you use it, I'd love to know! Twitter: @barrettjacobsen
Fix for infinite loop that appears if cropper is in some positions.
Hi Barrett Jacobsen First of all, thanks for this great project, it's very helpful. Yesterday, i have found a bug during my test. In one case there is an infinite...
I am using this code. ``` self.imageCropper = [[BJImageCropper alloc] initWithFrame:self.myView.frame]; self.imageCropper.image = self.imageToCrop; self.imageCropper.clipsToBounds = YES; [self.myview addSubview:self.imageCropper]; self.imageCropper.center = self.view.center; self.imageCropper.imageView.layer.shadowColor = [[UIColor blackColor] CGColor]; self.imageCropper.imageView.layer.shadowRadius = 3.0f;...
Hi Barrett J, I am using BJImageCropper in one of my iPhone apps. I select picture from Photo Library and crop it using your cropper classes. The problem I am...
any options?