ดูที่https://github.com/vvbogdan/BVCropPhoto
- (UIImage *) croppedImage {
CGFloat scale = self.sourceImage.size.width / self.scrollView.contentSize.width;
UIImage * finalImage = ไม่มี;
CGRect targetFrame = CGRectMake ((self.scrollView.contentInset.left + self.scrollView.contentOffset.x) * สเกล
(self.scrollView.contentInset.top + self.scrollView.contentOffset.y) * สเกล
self.cropSize.width * scale,
self.cropSize.height * scale);
CGImageRef contextImage = CGImageCreateWithImageInRect ([[ภาพตัวเองด้วยการหมุน: self.sourceImage] CGImage], เป้าหมายเฟรม);
if (contextImage! = NULL) {
finalImage = [UIImage imageWithCGImage: contextImage
ขนาด: self.sourceImage.scale
ปฐมนิเทศ: UIImageOrientationUp];
CGImageRelease (contextImage);
}
คืนสุดท้ายภาพ;
}
- (UIImage *) imageWithRotation: (UIImage *) ภาพ {
ถ้า (image.imageOrientation == UIImageOrientationUp) ภาพกลับมา;
CGAffineTransform transform = CGAffineTransformIdentity;
สวิตช์ (image.imageOrientation) {
กรณี UIImageOrientationDown:
เคส UIImageOrientationDownMirrored:
transform = CGAffineTransformTranslate (เปลี่ยน, image.size.width, image.size.height);
transform = CGAffineTransformRotate (transform, M_PI);
หยุดพัก;
กรณี UIImageOrientation ซ้าย:
เคส UIImageOrientationLeftMirrored:
transform = CGAffineTransformTranslate (เปลี่ยน, image.size.width, 0);
transform = CGAffineTransformRotate (แปลง, M_PI_2);
หยุดพัก;
กรณี UIImageOrientationRight:
เคส UIImageOrientationRightMirrored:
transform = CGAffineTransformTranslate (transform, 0, image.size.height);
transform = CGAffineTransformRotate (แปลง, -M_PI_2);
หยุดพัก;
กรณี UIImageOrientationUp:
กรณี UIImageOrientationUpMirrored:
หยุดพัก;
}
สวิตช์ (image.imageOrientation) {
กรณี UIImageOrientationUpMirrored:
เคส UIImageOrientationDownMirrored:
transform = CGAffineTransformTranslate (เปลี่ยน, image.size.width, 0);
transform = CGAffineTransformScale (transform, -1, 1);
หยุดพัก;
เคส UIImageOrientationLeftMirrored:
เคส UIImageOrientationRightMirrored:
transform = CGAffineTransformTranslate (เปลี่ยน, image.size.height, 0);
transform = CGAffineTransformScale (transform, -1, 1);
หยุดพัก;
กรณี UIImageOrientationUp:
กรณี UIImageOrientationDown:
กรณี UIImageOrientation ซ้าย:
กรณี UIImageOrientationRight:
หยุดพัก;
}
// ตอนนี้เราวาด CGImage พื้นฐานในบริบทใหม่โดยใช้การแปลง
// คำนวณข้างต้น
CGContextRef ctx = CGBitmapContextCreate (NULL, image.size.width, image.size.height,
CGImageGetBitsPerComponent (image.CGImage), 0,
CGImageGetColorSpace (image.CGImage)
CGImageGetBitmapInfo (image.CGImage));
CGContextConcatCTM (ctx, transform);
สวิตช์ (image.imageOrientation) {
กรณี UIImageOrientation ซ้าย:
เคส UIImageOrientationLeftMirrored:
กรณี UIImageOrientationRight:
เคส UIImageOrientationRightMirrored:
// Grr ...
CGContextDrawImage (ctx, CGRectMake (0, 0, image.size.height, image.size.width), image.CGImage);
หยุดพัก;
ค่าเริ่มต้น:
CGContextDrawImage (ctx, CGRectMake (0, 0, image.size.width, image.size.height), image.CGImage);
หยุดพัก;
}
// และตอนนี้เราเพิ่งสร้าง UIImage ใหม่จากบริบทการวาด
CGImageRef cgimg = CGBitmapContextCreateImage (ctx);
UIImage * img = [UIImage imageWithCGImage: cgimg];
CGContextRelease (ctx);
CGImageRelease (cgimg);
กลับสู่ img;
}