devxoul / UIImage-BetterAdditions

Deprecated. Use SwiftyImage.

Home Page:https://github.com/devxoul/SwiftyImage

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UIImage-BetterAdditions

Deprecated. Use SwiftyImage instead.


This category of UIImage add methods to generate dynamically images from colors, adding corner radius (for each corner), tinting images, etc. Use this category if you want to add "colored style" to your app without having to generate colored graphic resources.

Right now the category supports four types of operations:

###I. Create images for a color, size & corner radius

The folowing methods are used to generate a UIImage for a specific color, size and/or corner radius.

+ (UIImage*)imageWithColor:(UIColor*)color size:(CGSize)size;
+ (UIImage*)imageWithColor:(UIColor*)color size:(CGSize)size cornerRadius:(CGFloat)cornerRadius;
+ (UIImage*)imageWithColor:(UIColor*)color size:(CGSize)size cornerInset:(UICornerInset)cornerInset;

###II. Create resizable images for a color & corner radius

These methods are perfect to use inside UIButtons or UIImageViews if you are plannig to add a specific background color with a corner radius but you don't want to use QuartzCore. Also, you can specify which corner you want to round.

+ (UIImage*)resizableImageWithColor:(UIColor*)color;
+ (UIImage*)resizableImageWithColor:(UIColor*)color cornerRadius:(CGFloat)cornerRadius;
+ (UIImage*)resizableImageWithColor:(UIColor*)color cornerInset:(UICornerInset)cornerInset;

###III. Generate image with rounded corners

You can use these methods to get a corner rounded image version from a current image.

- (UIImage*)imageWithRoundedBounds;
- (UIImage*)imageWithCornerRadius:(CGFloat)cornerRadius;
- (UIImage*)imageWithCornerInset:(UICornerInset)cornerInset;
- (BOOL)isValidCornerInset:(UICornerInset)cornerInset;

###IV. Generate tinted image from existing image

In order to avoid to generate multiple versions of the same image to use in different states (in UIButton for example), your designers can just create a single version and with these methods you can generate tinted versions of the same image.

+ (UIImage*)imageNamed:(NSString *)name tintColor:(UIColor*)color style:(UIImageTintedStyle)tintStyle;
- (UIImage*)tintedImageWithColor:(UIColor*)color style:(UIImageTintedStyle)tintStyle;

You can use the following tint styles:

  • Use UIImageTintedStyleKeepingAlpha to keep transaprent pixels and tint only those that are not translucid.
  • Use UIImageTintedStyleOverAlpha to keep non transparent pixels and tint only those that are translucid.

###V. Superposing images

You can easily create an image by superposing two images. Calling the method:

- (UIImage *)imageAddingImage:(UIImage*)image offset:(CGPoint)offset;

The result is an image with the caller image as background and the given image as a top image. Also, you can specify an offset for the top image.

###VI. Generate Gradients You can create linear gradient images (with two colors or more) using the following methods:

+ (UIImage*)imageWithGradient:(NSArray*)colors size:(CGSize)size direction:(UIImageGradientDirection)direction;
+ (UIImage*)resizableImageWithGradient:(NSArray*)colors size:(CGSize)size direction:(UIImageGradientDirection)direction;

The first method returns an image with a gradient using the specified colors and direction of the given size. The second method returns the smallest resizable image that can generate the desired gradient for the given size.

Notes

  1. This category take care of scaling properties depending of the device resolution (retina or not) or the original image scale property.

  2. All static methods cache images so two consequtives calls with the same parameters returns the same image.


Licence

The MIT License (MIT)

Copyright (c) 2013 Joan Martin (vilanovi@gmail.com)
              2014 Suyeol Jeon (http://xoul.kr)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

Deprecated. Use SwiftyImage.

https://github.com/devxoul/SwiftyImage

License:Other


Languages

Language:Objective-C 96.1%Language:Ruby 3.9%