A collection of miscellaneous utility methods for UIImage
for memory-efficient
image transformations.
Add the following to your Podfile
:
pod 'UIImage+FBLAdditions', '~> 1.0'
Or, if you would also like to include the tests:
pod 'UIImage+FBLAdditions', '~> 1.0', :testspecs => ['Tests']
Then, run pod install
.
Add the following to your Cartfile
:
github "google/uiimage-additions"
Then, run carthage update
and follow the rest of instructions.
Import the umbrella header as:
#import <UIImage_FBLAdditions/UIImage+FBLAdditions.h>
Or:
#import "UIImage+FBLAdditions.h"
Or, the module:
@import UIImage_FBLAdditions;