All Projects → arturgrigor → Agsimpleimageeditorview

arturgrigor / Agsimpleimageeditorview

Yet Another Image Editor for iOS.

Labels

Projects that are alternatives of or similar to Agsimpleimageeditorview

Swimat
An Xcode formatter plug-in to format your swift code.
Stars: ✭ 1,388 (+1139.29%)
Mutual labels:  xcode
Easing
Easing functions in Swift 5
Stars: ✭ 107 (-4.46%)
Mutual labels:  xcode
Moderncppci
This is an example of doing a Modern C++ project with CI
Stars: ✭ 109 (-2.68%)
Mutual labels:  xcode
Xcodetemplate Sketchplugin
Stars: ✭ 105 (-6.25%)
Mutual labels:  xcode
Nextgrowingtextview
📝 The next in the generations of 'growing textviews' optimized for iOS 8 and above.
Stars: ✭ 1,540 (+1275%)
Mutual labels:  xcode
Swifterswift
A handy collection of more than 500 native Swift extensions to boost your productivity.
Stars: ✭ 10,706 (+9458.93%)
Mutual labels:  xcode
Xcconfig Extractor
Refactor BuildSettings into xcconfigs
Stars: ✭ 103 (-8.04%)
Mutual labels:  xcode
Shari
Shari is the alternative to the library of UIPickerView(drum roll) in Swift. You can select a item using UITableView.
Stars: ✭ 111 (-0.89%)
Mutual labels:  xcode
Progressmeter
Measuring the progress with annotations 🔱
Stars: ✭ 107 (-4.46%)
Mutual labels:  xcode
Materialactivityindicator
Material Activity Indicator
Stars: ✭ 109 (-2.68%)
Mutual labels:  xcode
Swift Init Generator
An Xcode plugin that uses the Swift parser to generate initializers
Stars: ✭ 105 (-6.25%)
Mutual labels:  xcode
React Native Paystack
React Native Wrapper for the Paystack Native Mobile SDKs
Stars: ✭ 106 (-5.36%)
Mutual labels:  xcode
Alamofire
Elegant HTTP Networking in Swift
Stars: ✭ 36,896 (+32842.86%)
Mutual labels:  xcode
Xunique
merge Xcode project file is so easy
Stars: ✭ 1,450 (+1194.64%)
Mutual labels:  xcode
Hmap
hmap is a command line tool written in Swift to work with Clang header maps produced by Xcode.
Stars: ✭ 110 (-1.79%)
Mutual labels:  xcode
Everlayout
Reusable, downloadable, up-datable iOS layouts
Stars: ✭ 103 (-8.04%)
Mutual labels:  xcode
Appicon
AppIcon generates *.appiconset contains each resolution image for iOS
Stars: ✭ 1,454 (+1198.21%)
Mutual labels:  xcode
Microfeatures Example
📦📱 Example of iOS app built using the uFeatures architecture
Stars: ✭ 112 (+0%)
Mutual labels:  xcode
Device
Light weight tool for detecting the current device and screen size written in swift.
Stars: ✭ 1,503 (+1241.96%)
Mutual labels:  xcode
React Native Settings
Allows access to various Android and iOS device settings using React Native
Stars: ✭ 108 (-3.57%)
Mutual labels:  xcode

No Maintenance Intended Twitter

AGSimpleImageEditorView

AGSimpleImageEditorView is just another image editor for iOS. The only features that this editor has are image cropping and rotation.

Screenshot

Installation

Copy over the files from the AGSimpleImageEditorView folder to your project folder.

Usage

Wherever you want to use AGSimpleImageEditorView, import the appropriate header file and initialize as follows:

#import "AGSimpleImageEditorView"

Basic

simpleImageEditorView = [[AGSimpleImageEditorView alloc] initWithImage:[UIImage imageNamed:@"sample"]];
[self.view addSubview:simpleImageEditorView];

Rotation

Left
[simpleImageEditorView rotateLeft];
Right
[simpleImageEditorView rotateRight];

Cropping

simpleImageEditorView.ratio = 4./3.;

Resulting image

UIImage *result = simpleImageEditorView.output;

Contact

Let me know if you're using or enjoying this product.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].