3pillarlabs/ios-image-manager

Name: ios-image-manager

Owner: 3Pillar Global Open Source

Description: image manager for ios

Created: 2015-08-14 08:45:39.0

Updated: 2016-05-26 11:17:51.0

Pushed: 2016-05-26 11:17:52.0

Homepage: null

Size: 10665

Language: Swift

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Carthage compatible CocoaPods compatible Swift 4.0

iOS image manager

Image Manager is a Swift based iOS module that provides basic image manipulation features. This module can be used as an alternative to the UIImagePickerController editor. It is available starting with iOS 8.

Project Rationale

The purpose of the framework is to provide a simple in app solution for basic image editing, by offering the following features:

Still To do Features

Known Issues

Installation

Available in iOS 8.0 and later.

CocoaPods
init
form :ios, '8.0'

et 'YourProjectName' do
e_frameworks!
pod 'ImageManager'

install

Remember to open project using workspace

Carthage
ub "3pillarlabs/ios-image-manager"
hage update
Usage
  1. Import Image Manager Framework
  2. Create an instance of ImageManagerViewController class.
  3. Set the 'displayedImage' property with the image we wand to edit.
  4. Present the Image Manager view controller in a way that it makes sense in your project.
  5. If you want to be notified when the editing process has ended or if it was canceled, you can implement the following Image Manager delegate methods:
 imageManagerController(controller:ImageManagerViewController, didFinishEditingImage image: UIImage)

 imageManagerControllerDidCancel(controller:ImageManagerViewController)
wift
imageName = "photo"
image = UIImage(named: imageName)

et aImage =  image {
t imageManagerVc = ImageManagerViewController()
ageManagerVc.displayedImage = image
 present the image manager view controller in the way that it makes sense in your application

License

iOS image manager is released under MIT license. See LICENSE for details.

About this project

3Pillar Global

iOS image manager is developed and maintained by 3Pillar Global.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.