| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- //
- // UIImage+Additions.h
- // Created by Joan Martin.
- // Take a look to my repos at http://github.com/vilanovi
- //
- // Copyright (c) 2013 Joan Martin, vilanovi@gmail.com.
- //
- // 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
- #import <UIKit/UIKit.h>
- typedef struct __UICornerInset
- {
- CGFloat topLeft;
- CGFloat topRight;
- CGFloat bottomLeft;
- CGFloat bottomRight;
- } UICornerInset;
- UIKIT_EXTERN const UICornerInset UICornerInsetZero;
- UIKIT_STATIC_INLINE UICornerInset UICornerInsetMake(CGFloat topLeft, CGFloat topRight, CGFloat bottomLeft, CGFloat bottomRight)
- {
- UICornerInset cornerInset = {topLeft, topRight, bottomLeft, bottomRight};
- return cornerInset;
- }
- UIKIT_STATIC_INLINE UICornerInset UICornerInsetMakeWithRadius(CGFloat radius)
- {
- UICornerInset cornerInset = {radius, radius, radius, radius};
- return cornerInset;
- }
- UIKIT_STATIC_INLINE BOOL UICornerInsetEqualToCornerInset(UICornerInset cornerInset1, UICornerInset cornerInset2)
- {
- return
- cornerInset1.topLeft == cornerInset2.topLeft &&
- cornerInset1.topRight == cornerInset2.topRight &&
- cornerInset1.bottomLeft == cornerInset2.bottomLeft &&
- cornerInset1.bottomRight == cornerInset2.bottomRight;
- }
- FOUNDATION_EXTERN NSString* NSStringFromUICornerInset(UICornerInset cornerInset);
- typedef enum __UIImageTintedStyle
- {
- UIImageTintedStyleKeepingAlpha = 1,
- UIImageTintedStyleOverAlpha = 2
- } UIImageTintedStyle;
- typedef enum __UIImageGradientDirection
- {
- UIImageGradientDirectionVertical = 1,
- UIImageGradientDirectionHorizontal = 2,
- } UIImageGradientDirection;
- @interface UIImage (Additions)
- /*
- * Create images from colors
- */
- + (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;
- /*
- * Create rezisable images from colors
- */
- + (UIImage*)resizableImageWithColor:(UIColor*)color;
- + (UIImage*)resizableImageWithColor:(UIColor*)color cornerRadius:(CGFloat)cornerRadius;
- + (UIImage*)resizableImageWithColor:(UIColor*)color cornerInset:(UICornerInset)cornerInset;
- + (UIImage*)blackColorImage;
- + (UIImage*)darkGrayColorImage;
- + (UIImage*)lightGrayColorImage;
- + (UIImage*)whiteColorImage;
- + (UIImage*)grayColorImage;
- + (UIImage*)redColorImage;
- + (UIImage*)greenColorImage;
- + (UIImage*)blueColorImage;
- + (UIImage*)cyanColorImage;
- + (UIImage*)yellowColorImage;
- + (UIImage*)magentaColorImage;
- + (UIImage*)orangeColorImage;
- + (UIImage*)purpleColorImage;
- + (UIImage*)brownColorImage;
- + (UIImage*)clearColorImage;
- /*
- * Tint Images
- */
- + (UIImage*)imageNamed:(NSString *)name tintColor:(UIColor*)color style:(UIImageTintedStyle)tintStyle;
- - (UIImage*)tintedImageWithColor:(UIColor*)color style:(UIImageTintedStyle)tintStyle;
- /*
- * Rounding corners
- */
- - (UIImage*)imageWithRoundedBounds;
- - (UIImage*)imageWithCornerRadius:(CGFloat)cornerRadius;
- - (UIImage*)imageWithCornerInset:(UICornerInset)cornerInset;
- - (BOOL)isValidCornerInset:(UICornerInset)cornerInset;
- /*
- * Drawing image on image
- */
- - (UIImage*)imageAddingImage:(UIImage*)image;
- - (UIImage*)imageAddingImage:(UIImage*)image offset:(CGPoint)offset;
- /*
- * Gradient image generation
- */
- + (UIImage*)imageWithGradient:(NSArray*)colors size:(CGSize)size direction:(UIImageGradientDirection)direction;
- + (UIImage*)resizableImageWithGradient:(NSArray*)colors size:(CGSize)size direction:(UIImageGradientDirection)direction;
- /*
- * tint只对里面的图案作更改颜色操作
- */
- - (UIImage *)imageWithTintColor:(UIColor *)tintColor;
- - (UIImage *)imageWithTintColor:(UIColor *)tintColor blendMode:(CGBlendMode)blendMode;
- - (UIImage *)imageWithGradientTintColor:(UIColor *)tintColor;
- @end
- #pragma mark - Categories
- @interface NSValue (UICornerInset)
- + (NSValue*)valueWithUICornerInset:(UICornerInset)cornerInset;
- - (UICornerInset)UICornerInsetValue;
- @end
|