Skip to content

A Swift 5 repo to crop image in any shape.

License

Notifications You must be signed in to change notification settings

craffenoux/ZImageCropper

 
 

Repository files navigation

ZImageCropper

CI Status Version License Platform

ZImageCropper is a simplest way to crop image to any shapes you like.

alt ZImageCropper

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

Cocoapods

ZImageCropper is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'ZImageCropper'

Manual

Add ZImageCropper.swift and ZImageCropperView.swift files to your project.

Usage

Crop using AI (Or programmatically)

Crop image using following code,

let croppedImage = ZImageCropper.cropImage(ofImageView: yourImageView, withinPoints: [
CGPoint(x: 0, y: 0),   //Start point
CGPoint(x: 100, y: 0),
CGPoint(x: 100, y: 100),
CGPoint(x: 0, y: 100)  //End point
])

Note : Make sure you provide valid points, points must be >=2 in count.

Crop using user touches,

Step 1: Add UIImageView to your StoryBoard/XIB and give it a Class Name: ZImageCropperView

Step 2: Run the app and see cropping is enable to your UIImageView

Step 3: Add @IBOutlet of your UIImageView and call method imageView.cropImage() to crop selected layer by user.

Author

Zaid Pathan

Contributor

Zaid Pathan, Devansh Vyas

License

ZImageCropper is available under the MIT license. See the LICENSE file for more info.

About

A Swift 5 repo to crop image in any shape.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 72.9%
  • Ruby 27.1%