iOS - how to implement crop image like default photo album?

后端 未结 4 883
眼角桃花
眼角桃花 2021-02-09 09:42

The default crop function in iPhone photo album

\"enter

Does any one know how to i

4条回答
  •  深忆病人
    2021-02-09 10:33

    you can use this to crop the image.

    CGRect rect = CGRectMake(some rect); 
    
    CGImageRef imageRef = CGImageCreateWithImageInRect([urImageView.image CGImage], rect);
    UIImage *cropedImage = [UIImage imageWithCGImage:imageRef];
    

提交回复
热议问题