Popularity
3.2
Stable
Activity
0.0
Stable
92
8
42

Code Quality Rank: L5
Programming language: Swift
Tags: Images    
Latest version: v0.2.2

WDImagePicker alternatives and similar libraries

Based on the "Images" category.
Alternatively, view WDImagePicker alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of WDImagePicker or a related project?

Add another 'Images' Library

README

WDImagePicker

Ever wanted a custom crop area for the UIImagePickerController? Now you can have it with WDImagePicker. Just set your custom crop area and that's it. Just 4 lines of code. If you don't set it, it uses the same crop area as the default UIImagePickerController.

Installation

CocoaPods

use_frameworks!

pod 'WDImagePicker', :git => 'https://github.com/justwudi/WDImagePicker.git', :tag => '0.2.2'

and run pod install

Manually

  • just drag and drop the files in under "Classes" into your project.
  • look at the sample code below.
  • this project contains a sample project as well, just have a look at the implementation of ViewController.swift

Sample Code

self.imagePicker = WDImagePicker()
self.imagePicker.cropSize = CGSizeMake(280, 90)
self.imagePicker.delegate = self

self.presentViewController(self.imagePicker.imagePickerController, animated: true, completion: nil)

This code results into the following controller + crop area:

Sample Crop Image

It's even possible to let the user adjust the crop area by setting one additional property:

self.imagePicker.resizeableCropArea = true

This code results into the following controller + adjustable crop area:

Sample Crop Image Adjustable

License

Under MIT. See license file for details.


*Note that all licence references and agreements mentioned in the WDImagePicker README section above are relevant to that project's source code only.