Coder Social home page Coder Social logo

uiimage-additions's Introduction

Version Platform

UIImage+Additions

UIImage-Additions

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*)add_imageWithColor:(UIColor*)color size:(CGSize)size;
+ (UIImage*)add_imageWithColor:(UIColor*)color size:(CGSize)size cornerRadius:(CGFloat)cornerRadius;
+ (UIImage*)add_imageWithColor:(UIColor*)color size:(CGSize)size cornerInset:(ADDCornerInset)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*)add_resizableImageWithColor:(UIColor*)color;
+ (UIImage*)add_resizableImageWithColor:(UIColor*)color cornerRadius:(CGFloat)cornerRadius;
+ (UIImage*)add_resizableImageWithColor:(UIColor*)color cornerInset:(ADDCornerInset)cornerInset;

###III. Generate image with rounded corners

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

- (UIImage*)add_imageWithRoundedBounds;
- (UIImage*)add_imageWithCornerRadius:(CGFloat)cornerRadius;
- (UIImage*)add_imageWithCornerInset:(ADDCornerInset)cornerInset;
- (BOOL)add_isValidCornerInset:(ADDCornerInset)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*)add_imageNamed:(NSString *)name tintColor:(UIColor*)color style:(ADDImageTintStyle)tintStyle;
- (UIImage*)add_tintedImageWithColor:(UIColor*)color style:(ADDImageTintStyle)tintStyle;

You can use the following tint styles:

  • Use ADDImageTintStyleKeepingAlpha to keep transaprent pixels and tint only those that are not translucid.
  • Use ADDImageTintStyleOverAlpha to keep non transparent pixels and tint only those that are translucid.
  • Use ADDImageTintStyleOverAlphaExtreme to remove (turn to transparent) 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*)add_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*)add_imageWithGradient:(NSArray*)colors size:(CGSize)size direction:(ADDImageGradientDirection)direction;
+ (UIImage*)add_resizableImageWithGradient:(NSArray*)colors size:(CGSize)size direction:(ADDImageGradientDirection)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.

  • Use ADDImageGradientDirectionVertical to generate a vertical gradient.
  • Use ADDImageGradientDirectionHorizontal to generate a horizontal gradient.
  • Use ADDImageGradientDirectionLeftSlanted to generate a left-diagonal gradient.
  • Use ADDImageGradientDirectionRightSlanted to generate a right-diagonal gradient.

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

Copyright (c) 2013 Joan Martin, [email protected].

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

uiimage-additions's People

Contributors

devxoul avatar erdemtu avatar vilanovi avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.