static void addRoundedRectToPath(CGContextRef context, CGRect rect, float ovalWidth, float ovalHeight){ float fw, fh; if (ovalWi...
分类:
其他好文 时间:
2015-08-28 15:27:44
阅读次数:
124
//UIColor 转UIImage - (UIImage*) createImageWithColor: (UIColor*) color { ????CGRect?rect=CGRectMake(0,?0,?1,?1); ????UIGraphicsBeginImageContext(rect.size); ????CGContextRef?conte...
分类:
移动开发 时间:
2015-08-26 18:06:39
阅读次数:
265
一、图形上下文栈1.自定义一个MJView,继承自UIView2.将默认View的Class设置为MJView3.实现drawRect:方法-(void)drawRect:(CGRect)rect{ //1.获得上下文 CGContextRef ctx = UIGraphicsGetCurr...
分类:
移动开发 时间:
2015-08-21 20:50:33
阅读次数:
244
#import "PublishContextView.h"@implementation PublishContextView-(void)drawRect:(CGRect)rect{ [super drawRect:rect]; CGContextRef context=UIGrap...
分类:
其他好文 时间:
2015-08-08 19:38:07
阅读次数:
115
// 自绘分割线- (void)drawRect:(CGRect)rect{ CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSetFillColorWithColor(context, [UIColo...
分类:
其他好文 时间:
2015-08-04 12:51:10
阅读次数:
113
Quartz2D绘制小黄人- (void)drawRect:(CGRect)rect
{
// 1.上下文
CGContextRef ctx = UIGraphicsGetCurrentContext(); // 2.身体
drawBody(ctx, rect); // 3.嘴(微笑)
drawMouth(ctx, rect); // 4.画眼睛...
分类:
移动开发 时间:
2015-08-01 08:52:33
阅读次数:
235
CGBitmapContextCreate函数参数详解函数原型:CGContextRef CGBitmapContextCreate ( void *data, size_t width, size_t height, size_t bitsPerComponent, size_t bytesPer...
分类:
其他好文 时间:
2015-07-23 13:39:20
阅读次数:
118
这个问题一直比较苦恼,网上很多方法实验下来都不是很好,今天终于解决了。
直接上代码:
CGRect rect = CGRectMake(0,
0, self.view.frame.size.width,
self.view.frame.size.height);
UIGraphicsBeginImageContext(rect.size);
CGContextRef...
分类:
移动开发 时间:
2015-07-19 00:12:09
阅读次数:
246
绘图操作前言:在iOS开发中,系统已经给我们提供了功能强大的控件,可是很多并不能满足我们的需求。这时候我们需要,自定义一些美观的控件。所用的知识也就是下面的绘图。1.基本的绘图知识1.1图形上下文
1.1图形上下文(Graphics Context):是一个CGContextRef类型的数据
1.2图形上下文的作用
保存绘图信息、绘图状态
决定绘制的输出目标(绘制到什么地方去?)
(输出目标可...
分类:
移动开发 时间:
2015-07-15 21:07:24
阅读次数:
263
-?(UIImage?*)createImageWithColor:(UIColor?*)color
{
????CGRect?rect?=?CGRectMake(0.0f,?0.0f,?1.0f,?1.0f);
????UIGraphicsBeginImageContext(rect.size);
????CGContextRef?context...
分类:
其他好文 时间:
2015-07-15 17:14:45
阅读次数:
114