博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UIImage与UIColor互转
阅读量:5040 次
发布时间:2019-06-12

本文共 1100 字,大约阅读时间需要 3 分钟。

Objective-C

UIColor -> UIImage

1
2
3
4
5
6
7
8
9
10
11
- (UIImage*) createImageWithColor: (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;
}

 

UIImage -> UIColor

1
[UIColor colorWithPatternImage:[UIImageimageNamed:@"Background"]]

 

 

Swift

UIColor -> UIImage

1
2
3
4
5
6
7
8
9
10
11
func createImageWithColor(color: UIColor) -> UIImage
{
    let rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f)
    UIGraphicsBeginImageContext(rect.size)
    let context = UIGraphicsGetCurrentContext()
    CGContextSetFillColorWithColor(context, color.CGColor)
    CGContextFillRect(context, rect)
    let theImage = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()
    return theImage
}

 

 

UIImage -> UIColor

1
UIColor(PatternImage: UIImage(named: @
"Background"
))

转载于:https://www.cnblogs.com/Free-Thinker/p/5115716.html

你可能感兴趣的文章
Ubuntu的人性化配置
查看>>
POJ-2947 Widget Factory 高斯消元
查看>>
struts2(一)
查看>>
Dynamic 动态类型 和双问号??的使用
查看>>
ExtJs七(ExtJs Mvc创建ViewPort)
查看>>
如何用div实现textarea
查看>>
tomcat设置指定jdk版本
查看>>
洛咕 P4491 [HAOI2018]染色
查看>>
ZJOI2019 线段树
查看>>
继承与多态 课后习题
查看>>
Redis 数据类型
查看>>
sqlserver时间函数
查看>>
ASP.NET Aries 高级开发教程:Excel导入之代码编写(番外篇)
查看>>
数据结构与算法JS实现
查看>>
ISCSI网络存储服务
查看>>
关于svn和maven结合使用的讨论
查看>>
Microsoft Azure Preview portal 以及Preview Features介绍
查看>>
ZeroMQ:云计算时代最好的通讯库
查看>>
45.纯 CSS 创作一个菱形 loader 动画
查看>>
vue组件 Prop传递数据
查看>>