Popularity
4.0
Stable
Activity
3.2
Growing
228
10
39

Programming language: Swift
License: MIT License
Tags: Media     Image    
Latest version: v0.1.1

ZImageCropper alternatives and similar libraries

Based on the "Image" category.
Alternatively, view ZImageCropper alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ZImageCropper or a related project?

Add another 'Image' Library

README

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'

Swift Package Manager

The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into Xcode and the Swift compiler.

If you are using Xcode 11 or later:

  1. Click File
  2. Swift Packages
  3. Add Package Dependency...
  4. Specify the git URL for ZImageCropper.
 https://github.com/ZaidPathan/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.


*Note that all licence references and agreements mentioned in the ZImageCropper README section above are relevant to that project's source code only.