Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/smakeev/someimagecropper

UIVIew to crop an image
https://github.com/smakeev/someimagecropper

crop image-crop ios swift

Last synced: about 4 hours ago
JSON representation

UIVIew to crop an image

Awesome Lists containing this project

README

        

# SomeImageCropper
![Farmers Market Finder Demo](demo/demo.gif)

# How to use:
```
use_frameworks!
pod "SomeImageCropper"
```

# dependencies
https://github.com/smakeev/SomeInnerView

Example:
```swift
let cropper: CropperView = CropperView()
...
cropper.sourceImage = image
//after that user will be able to select part of the image

_ = cropper.crop() { img in
imageView.image = img //put result
}
```