Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Swift 3.0: How to call CGImageCreateWithImageInRect()?

I need to implement this Objective-C code in Swift 3.0 (I'm using Xcode 8 Beta 3):

// Note: this code comes from an Obj-C category on UIImage
CGImageRef imageRef = CGImageCreateWithImageInRect(self.CGImage, cropRect);
UIImage *image = [UIImage imageWithCGImage:imageRef scale:self.scale orientation:self.imageOrientation];

I can't find anything in the latest documentation for CGImageCreateWithImageInRect().

like image 840
RobertJoseph Avatar asked Jul 25 '16 12:07

RobertJoseph


2 Answers

When I write this code in Xcode8's Swift editor:

let imageRef = CGImageCreateWithImageInRect(self.CGImage!, cropRect)

Swift has shown me an error as:

error: 'CGImageCreateWithImageInRect' has been replaced by instance method 'CGImage.cropping(to:)'

So, I changed the line to:

let imageRef = self.cgImage!.cropping(to: cropRect)

And the second line of your code seems to be directly convertible to Swift:

let image = UIImage(cgImage: imageRef!, scale: self.scale, orientation: self.imageOrientation)

And the latest documentations of CGImageCreateWithImageInRect,

CGImageCreateWithImageInRect

Clicking the Swift link, it shows:

func cropping(to rect: CGRect) -> CGImage?
like image 87
OOPer Avatar answered Sep 28 '22 21:09

OOPer


var imageRef = self.image.cropping(to: cropRect)
like image 38
Juri Noga Avatar answered Sep 28 '22 23:09

Juri Noga