We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 97e38d9 + 8d6c788 commit c5c4b0dCopy full SHA for c5c4b0d
TZImagePickerController/TZImagePickerController/TZImageCropManager.m
@@ -19,7 +19,7 @@ + (void)overlayClippingWithView:(UIView *)view cropRect:(CGRect)cropRect contain
19
UIBezierPath *path= [UIBezierPath bezierPathWithRect:[UIScreen mainScreen].bounds];
20
CAShapeLayer *layer = [CAShapeLayer layer];
21
if (needCircleCrop) { // 圆形裁剪框
22
- [path appendPath:[UIBezierPath bezierPathWithArcCenter:containerView.center radius:cropRect.size.width / 2 startAngle:0 endAngle: 2 * M_PI clockwise:NO]];
+ [path appendPath:[UIBezierPath bezierPathWithRoundedRect:cropRect cornerRadius:cropRect.size.width / 2]];
23
} else { // 矩形裁剪框
24
[path appendPath:[UIBezierPath bezierPathWithRect:cropRect]];
25
}
0 commit comments