Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/agilie/agimagecontrols
cool tools for image edition
https://github.com/agilie/agimagecontrols
avfoundation camera capture core-image edition filters fonts image-processing metal photos swift-3 swift-library tools
Last synced: about 1 month ago
JSON representation
cool tools for image edition
- Host: GitHub
- URL: https://github.com/agilie/agimagecontrols
- Owner: agilie
- License: mit
- Created: 2017-07-26T14:26:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-09T10:52:36.000Z (over 7 years ago)
- Last Synced: 2024-03-14T22:24:05.304Z (11 months ago)
- Topics: avfoundation, camera, capture, core-image, edition, filters, fonts, image-processing, metal, photos, swift-3, swift-library, tools
- Language: Swift
- Homepage: https://agilie.com
- Size: 14 MB
- Stars: 227
- Watchers: 12
- Forks: 20
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Hey, everyone!
We’re happy to share with you our new lightweight and open-source library called AGImageControls and free to use.
Integrate AGImageControls library into your project and get an efficient tool for photos, screenshots, and other images processing. (Supporting Metal Performance Shaders)AGImageControls allows users to:
- process any image with special filters. Due to these filters, a user can control the saturation, brightness, contrast, and sharpness of the picture, and also apply a gradient of the appropriate color and the suitable transparency
- easily supplement an image with a title and a brief description. In addition, one can select the font type, color, and size
- use vector masks to add emotions and accents to the image. You can also turn the elements through 360 degrees and set the desired slope
## Note (Device only)
Make sure that you are running on an actual device (not the simulator) that has an A7 or better chip (an iPhone 5S, iPhone 6, iPhone 6 Plus, iPad Air, or iPad mini (2nd generation))
## Installation
AGImageControls is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:```ruby
pod "AGImageControls"
```## Demo
## Example
To run the example project, clone the repo, and run `pod install` from the Example directory first.
You can also see an example :## Usage
1. Import `AGImageControls` module to your `ViewController` class
```swift
import AGImageControls
```2. Add `AGCameraSnapViewController` to `ViewController`, then set delegate for it
```swift
let camera = AGCameraSnapViewController()
camera.delegate = self
self.present(camera, animated: true, completion: nil)
```3. Conform your `ViewController` to `AGCameraSnapViewControllerDelegate` protocol
```swift
func fetchImage (cameraSnapViewController : AGCameraSnapViewController, image : UIImage) {
self.imageView.image = image
}
```4. `AGCameraSnapViewController` works with default implementation.
## Troubleshooting
Problems? Check the [Issues](https://github.com/agilie/AGImageControls/issues) block
to find the solution or create an new issue that we will fix asap. Feel free to contribute.## Author
This iOS visual component is open-sourced by [Agilie Team](https://www.agilie.com?utm_source=github&utm_medium=referral&utm_campaign=Git_Swift&utm_term=AGImageControls)
## Contributors
- [Michael Liptuga](https://github.com/Liptuga-Michael)## Contact us
If you have any questions, suggestions or just need a help with web or mobile development, please email us at
. You can ask us anything from basic to complex questions.## License
AGImageControls is available under
The [MIT](LICENSE.md) License (MIT) Copyright © 2017 [Agilie Team](https://www.agilie.com?utm_source=github&utm_medium=referral&utm_campaign=Git_Swift&utm_term=AGImageControls)