码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 创建一张有颜色的UIImage

时间:2014-11-04 19:22:43      阅读:726      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   使用   sp   div   on   

#import <UIKit/UIKit.h>

@interface UIImage (ImageWithColor)

+ (UIImage *)imageWithColor:(UIColor *)color;

@end

#import "UIImage+ImageWithColor.h"

@implementation UIImage (ImageWithColor)

+ (UIImage *)imageWithColor:(UIColor *)color
{
    CGRect rect = CGRectMake(0, 0, 1, 1);
    UIGraphicsBeginImageContext(rect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    
    CGContextSetFillColorWithColor(context, [color CGColor]);
    CGContextFillRect(context, rect);
    
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    
    return image;
}

@end

// 使用

 UIColor *purpleColor = [UIColor colorWithRed:.927f green:.264f blue:.03f alpha:1];

 UIImage *image = [UIImage imageWithColor:purpleColor];

 

IOS 创建一张有颜色的UIImage

标签:style   blog   io   color   os   使用   sp   div   on   

原文地址:http://www.cnblogs.com/joesen/p/4074174.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!