https://github.com/smakeev/someimagecropper
UIVIew to crop an image
https://github.com/smakeev/someimagecropper
crop image-crop ios swift
Last synced: 17 days 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 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-21T17:22:45.000Z (over 5 years ago)
- Last Synced: 2025-02-17T13:01:53.512Z (5 months 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
# 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
}
```