This class provides the feature to draw a rectangle over an image by dragging a finger over it, move it, and extract the covered region into a UIImage.
## Usage To run the example project, clone the repo, and run `pod install` from the Example directory first.In your storyboard select the custom class MMSCropImageView for the Image View widget.
Import the class header.
import MMSCropView
Add an event handler to initiate the crop action and call the crop method on the image view.
@IBAction func crop(sender: UIButton) {
let croppedImage = originalImageView.crop()
croppedImageView.image = croppedImage
}
- MMSCropView requires iOS 8.3 or later.
- Swift 3.0.
MMSCropView is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "MMSCropView"
William Miller, [email protected]
An article describing the implementation of the class: A View Class for Cropping Images.
William Miller
This project is is available under the MIT license. See the LICENSE file for more info. Attribution by linking to the project page is appreciated.