我像这样使用 UIImagePickerController
为 imageView 获取图像
-(void)imagePickerControllerUIImagePickerController *)picker didFinishPickingMediaWithInfoNSDictionary *)info
{
UIImage *originalImage = [info objectForKey"UIImagePickerControllerOriginalImage"];
CGSize destinationSize1 = CGSizeMake(200, 200);
UIGraphicsBeginImageContext(destinationSize1);
[originalImage drawInRect:CGRectMake(0,0,destinationSize1.width,destinationSize1.height)];
UIImage *newImage1 = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
firstimage1.image = newImage1;
[picker dismissViewControllerAnimated:YES completion:nil];
NSLog(@"image width is %f",firstimage1.image.size.width);
NSLog(@"image height is %f",firstimage1.image.size.height);
if (firstimage1.image.size.width==200 && firstimage1.image.size.height==200) {
UIAlertView *alertcrp=[[UIAlertView alloc]initWithTitle"message!" message"you want to crop this image" delegate:self cancelButtonTitle"cancel" otherButtonTitles:nil];
[alertcrp addButtonWithTitle"Crop "];
[alertcrp show];
}
}
- (void)alertViewUIAlertView *)alertView didDismissWithButtonIndexNSInteger)buttonIndex
{
NSLog(@"Button Index =%ld",(long)buttonIndex);
if (buttonIndex == 0)
{
NSLog(@"You have clicked Cancel");
}
else if(buttonIndex == 1)
{
UIImagePickerController *controller = [[UIImagePickerController alloc] init];
controller.allowsEditing = YES; // this will allow you to crop the image first
controller.delegate = self;
[self presentViewController:controller animated:YES completion:nil];
}
}
我们将图像大小调整为 200*200。现在我需要的是当用户上传图像时。如果图像上传成功,然后打开 alertView“如果你想裁剪图像”。单击裁剪按钮后,我需要打开矩形裁剪 View 。
请告诉我有关我的问题的任何想法。感谢高级。
您需要做的事情非常简单。首先创建一个 UIScrollView
你想要裁剪的裁剪大小,如果你想通过平移手势等,你可以使它动态化。但是我已经完成了一个恒定的裁剪大小,所以我不会详细介绍.接下来创建一个原始图像大小的 UIImageView
并将其 image proprety
设置为该大小。还要将 scorllview 的内容大小
属性设置为与图像大小完全相同。允许反弹有一些额外的效果。然后在按下裁剪时,您只需将 ScrollView 的内容偏移量和要裁剪的大小(即 ScrollView 的大小,即其宽度和高度)传递给此函数。
- (UIImage *)cropUIImage *)image inRectCGRect)cropRect
{
CGImageRef cropRef = CGImageCreateWithImageInRect(image.CGImage, cropRect);
UIImage* cropImage = [UIImage imageWithCGImage:cropRef];
CGImageRelease(cropRef);
return cropImage;
}
你可以按照上面的描述调用这个方法
UIImage * img = [[CommonFunctions sharedManager] crop:imgView.image inRect:CGRectMake(scrollView.contentOffset.x , scrollView.contentOffset.y , reqWidth, reqHeight)];
根据您的逻辑制作矩形进行裁剪可能存在错误。但是你应该对做什么有一个大致的了解。如果有什么让您感到困惑或者是否有帮助,请告诉我,以便我可以进一步提供帮助
关于ios - Objective-C 中的用户自定义裁剪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26754775/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |