UIImage+PYJColorBecomeImage

本文介绍了一个UIImage的Objective-C类别扩展,通过该扩展可以轻松地将任意UIColor对象转换为填充了该颜色的UIImage对象。这个实用的方法适用于需要快速生成纯色背景图片的场景。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

UIImage+PYJColorBecomeImage.h:

//
//  UIImage+PYJColorBecomeImage.h
//  颜色转成图片
//
//  Created by PengYunjing on 16/8/24.
//  Copyright © 2016年 PYJ. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface UIImage (PYJColorBecomeImage)

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

@end

 

UIImage+PYJColorBecomeImage.m:

//
//  UIImage+PYJColorBecomeImage.m
//  颜色转成图片
//
//  Created by PengYunjing on 16/8/24.
//  Copyright © 2016年 PYJ. All rights reserved.
//

#import "UIImage+PYJColorBecomeImage.h"

@implementation UIImage (PYJColorBecomeImage)

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

@end

 

转载于:https://www.cnblogs.com/pengyunjing/p/6036221.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值