Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/smakeev/someimagecropper
- Owner: smakeev
- License: mit
- Created: 2020-03-20T20:34:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-03-21T17:22:45.000Z (over 4 years ago)
- Last Synced: 2024-10-30T15:16:49.535Z (16 days ago)
- Topics: crop, image-crop, ios, swift
- Language: Swift
- Size: 13.8 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/SomeInnerViewExample:
```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
}
```