iOS 画图讲解
5、画图
(1)画线
//绘图代码写在drawRect里,view加载完成,需要显示的时候调用
//1、获取图形上下文 2、创建路径 3、把图形放入上下文 4、渲染上下文
//drawRect的rect是绘制View的bounds
//重绘
[self setNeedsDisplay];
set = setStroke(描边) + setFill(填充)
//方法一:最原始的方法
//1、获取图形上下文,CG,CoreGraphics,有关图形的框架,开发mac也可以用
CGContextRef ctx = UIGraphicsGetCurrentContext();
//2、创建路径
CGMutablePathRef path = CGPathCreateMutable();
//设置起始点
CGPathMoveToPoint(path, NULL, 50, 50);
//画线到某一点
CGPathAddLineToPoint(path, NULL, 200, 200);
//3、把图形放入上下文
CGContextAddPath(ctx, path);
//4、渲染上下文
CGContextStrokePath(ctx);
//绘图的第二种方法
- (void)drawLine2 {
CGContextRef ctx = UIGraphicsGetCurrentContext();
//设置起始点
CGContextMoveToPoint(ctx, 50, 50);
//画线并设置终点
CGContextAddLineToPoint(ctx, 200, 200);
//渲染上下文
CGContextStrokePath(ctx);
}
//第三种方法
- (void)drawLine3 {
//贝塞尔线,UIKit
//创建路径
UIBezierPath * path = [UIBezierPath bezierPath];
//设置起点
[path moveToPoint:CGPointMake(50, 50)];
//画线并设置终点
[path addLineToPoint:CGPointMake(200, 200)];
//绘制路径
[path stroke];
}
//属性
- (void)drawCtxState {
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(ctx, 50, 50);
CGContextAddLineToPoint(ctx, 100, 50);
// CGContextMoveToPoint(ctx, 80, 60);
//默认下一根线的起点就是上一根线的终点
CGContextAddLineToPoint(ctx, 100, 200);
//设置线宽度
CGContextSetLineWidth(ctx, 5);
//设置连接样式
CGContextSetLineJoin(ctx, kCGLineJoinRound);
//设置顶角样式
CGContextSetLineCap(ctx, kCGLineCapRound);
//设置线的颜色
[[UIColor redColor] setStroke];
CGContextStrokePath(ctx);
}
//画曲线
- (void)drawRect:(CGRect)rect {
// Drawing code
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(ctx, 50, 50);
//画曲线 arg1 上下文 arg2,3 控制点x,y arg4,5 终点x,y
CGContextAddQuadCurveToPoint(ctx, 100, 100, 250, 50);
CGContextStrokePath(ctx);
}
(2)画图形
//画矩形
UIBezierPath * path = [UIBezierPath bezierPathWithRect:CGRectMake(20, 20, 200, 200)];
//画圆角矩形
UIBezierPath * path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(20, 20, 200, 200) cornerRadius:100];
//画圆弧
//Center 圆弧中心
//radius 圆弧半径
//startAngle 起始角度
//endAngle 结束角度
//clockwise YES 顺时针 NO 逆时针
CGPoint center = CGPointMake(125, 125);
UIBezierPath * path = [UIBezierPath bezierPathWithArcCenter:center radius:100 startAngle:0 endAngle:M_PI_2 clockwise:NO];
[path addLineToPoint:center];
//封闭路径
[path closePath];
[path stroke];
//要使用setFill,路径一定是封闭的
[[UIColor greenColor] setFill];
[path fill];
//画椭圆
UIBezierPath * path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(20, 50, 200, 100)];
[path stroke];
}
6、绘制图片和文字
(1)绘制图片
- (void)drawPicture {
//图片裁剪,超出部分全部剪掉
UIRectClip(CGRectMake(0, 0, 50, 50));
UIImage * image = [UIImage imageNamed:@"01"];
//根据rect拉伸图片
[image drawInRect:CGRectMake(0, 0, 100, 100)];
[image drawInRect:rect];
//显示原图片尺寸
[image drawAtPoint:CGPointZero];
//平铺绘图
[image drawAsPatternInRect:rect];
}
(2)绘制文字
- (void)drawRect:(CGRect)rect {
// Drawing code
NSString * string = @"hgfdagskjhdcadkhdkjlashkdklhahgfdagskjhdcad";
NSShadow * shadow = [[NSShadow alloc] init];
shadow.shadowColor = [UIColor yellowColor];
shadow.shadowOffset = CGSizeMake(5, 5);
//模糊度
shadow.shadowBlurRadius = 3;
NSDictionary * dict = @{NSFontAttributeName:[UIFont systemFontOfSize:30],
NSForegroundColorAttributeName:[UIColor redColor],
NSStrokeColorAttributeName:[UIColor blueColor],
NSStrokeWidthAttributeName:@(2),
NSShadowAttributeName: shadow};
//不会换行
[string drawAtPoint:CGPointZero withAttributes:nil];
[string drawInRect:rect withAttributes:dict];
}
5、画图
(1)画线
//绘图代码写在drawRect里,view加载完成,需要显示的时候调用
//1、获取图形上下文 2、创建路径 3、把图形放入上下文 4、渲染上下文
//drawRect的rect是绘制View的bounds
//重绘
[self setNeedsDisplay];
set = setStroke(描边) + setFill(填充)
//方法一:最原始的方法
//1、获取图形上下文,CG,CoreGraphics,有关图形的框架,开发mac也可以用
CGContextRef ctx = UIGraphicsGetCurrentContext();
//2、创建路径
CGMutablePathRef path = CGPathCreateMutable();
//设置起始点
CGPathMoveToPoint(path, NULL, 50, 50);
//画线到某一点
CGPathAddLineToPoint(path, NULL, 200, 200);
//3、把图形放入上下文
CGContextAddPath(ctx, path);
//4、渲染上下文
CGContextStrokePath(ctx);
//绘图的第二种方法
- (void)drawLine2 {
CGContextRef ctx = UIGraphicsGetCurrentContext();
//设置起始点
CGContextMoveToPoint(ctx, 50, 50);
//画线并设置终点
CGContextAddLineToPoint(ctx, 200, 200);
//渲染上下文
CGContextStrokePath(ctx);
}
//第三种方法
- (void)drawLine3 {
//贝塞尔线,UIKit
//创建路径
UIBezierPath * path = [UIBezierPath bezierPath];
//设置起点
[path moveToPoint:CGPointMake(50, 50)];
//画线并设置终点
[path addLineToPoint:CGPointMake(200, 200)];
//绘制路径
[path stroke];
}
//属性
- (void)drawCtxState {
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(ctx, 50, 50);
CGContextAddLineToPoint(ctx, 100, 50);
// CGContextMoveToPoint(ctx, 80, 60);
//默认下一根线的起点就是上一根线的终点
CGContextAddLineToPoint(ctx, 100, 200);
//设置线宽度
CGContextSetLineWidth(ctx, 5);
//设置连接样式
CGContextSetLineJoin(ctx, kCGLineJoinRound);
//设置顶角样式
CGContextSetLineCap(ctx, kCGLineCapRound);
//设置线的颜色
[[UIColor redColor] setStroke];
CGContextStrokePath(ctx);
}
//画曲线
- (void)drawRect:(CGRect)rect {
// Drawing code
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextMoveToPoint(ctx, 50, 50);
//画曲线 arg1 上下文 arg2,3 控制点x,y arg4,5 终点x,y
CGContextAddQuadCurveToPoint(ctx, 100, 100, 250, 50);
CGContextStrokePath(ctx);
}
(2)画图形
//画矩形
UIBezierPath * path = [UIBezierPath bezierPathWithRect:CGRectMake(20, 20, 200, 200)];
//画圆角矩形
UIBezierPath * path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(20, 20, 200, 200) cornerRadius:100];
//画圆弧
//Center 圆弧中心
//radius 圆弧半径
//startAngle 起始角度
//endAngle 结束角度
//clockwise YES 顺时针 NO 逆时针
CGPoint center = CGPointMake(125, 125);
UIBezierPath * path = [UIBezierPath bezierPathWithArcCenter:center radius:100 startAngle:0 endAngle:M_PI_2 clockwise:NO];
[path addLineToPoint:center];
//封闭路径
[path closePath];
[path stroke];
//要使用setFill,路径一定是封闭的
[[UIColor greenColor] setFill];
[path fill];
//画椭圆
UIBezierPath * path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(20, 50, 200, 100)];
[path stroke];
}
6、绘制图片和文字
(1)绘制图片
- (void)drawPicture {
//图片裁剪,超出部分全部剪掉
UIRectClip(CGRectMake(0, 0, 50, 50));
UIImage * image = [UIImage imageNamed:@"01"];
//根据rect拉伸图片
[image drawInRect:CGRectMake(0, 0, 100, 100)];
[image drawInRect:rect];
//显示原图片尺寸
[image drawAtPoint:CGPointZero];
//平铺绘图
[image drawAsPatternInRect:rect];
}
(2)绘制文字
- (void)drawRect:(CGRect)rect {
// Drawing code
NSString * string = @"hgfdagskjhdcadkhdkjlashkdklhahgfdagskjhdcad";
NSShadow * shadow = [[NSShadow alloc] init];
shadow.shadowColor = [UIColor yellowColor];
shadow.shadowOffset = CGSizeMake(5, 5);
//模糊度
shadow.shadowBlurRadius = 3;
NSDictionary * dict = @{NSFontAttributeName:[UIFont systemFontOfSize:30],
NSForegroundColorAttributeName:[UIColor redColor],
NSStrokeColorAttributeName:[UIColor blueColor],
NSStrokeWidthAttributeName:@(2),
NSShadowAttributeName: shadow};
//不会换行
[string drawAtPoint:CGPointZero withAttributes:nil];
[string drawInRect:rect withAttributes:dict];
}
iOS 画图讲解的更多相关文章
- iOS 画图讲解2
1.图片水印 //layer上下文只能显示在drawRect里 //当开启上下文时,绘制图形即可在viewDidLoad中实现 //位图的上下文 //UIGraphicsBeginImageConte ...
- IOS NSUserDefaults 讲解 用法
IOS NSUserDefaults 讲解 用法 NSUserDefaults适合存储轻量级的本地数据,比如要保存一个登陆界面的数据,用户名.密码之类的,个人觉得使用NSUserDefaults ...
- iOS开发讲解SDWebImage,你真的会用吗?
SDWebImage作为目前最受欢迎的图片下载第三方框架,使用率很高.但是你真的会用吗?本文接下来将通过例子分析如何合理使用SDWebImage. 使用场景:自定义的UITableViewCell上有 ...
- 利用IOS画图功能画出五角星,并且可以调整五角星的填充范围
我们要花的为一个黄色的五角星并且其中的填充黄色能够任意调整,比如只填满半个五角星,或者只填满一个角等等. 首先要重写DrawRect 方法,然后在这里实现我们的画图代码. - (void)drawRe ...
- iOS 画图基础
基础要点: 1,画图不可以在 ViewController 里,而是应该在一个 UIView 的子类中,比如新建一个 DrawView 继承自 UIView. 2,覆盖 UIView 的 drawRe ...
- ios 画图总结
0 CGContextRef context = UIGraphicsGetCurrentContext(); 设置上下文1 CGContextMoveToPoint 开始画线2 CGContextA ...
- ios 深入讲解iOS键盘一:控制键盘隐藏显示
在iOS的开发中,我们一般使用UITextField.UITextView处理文字输入等操作,大部分情况下我们只需要一两行代码去手动管理键盘的显示隐藏:让UITextField或UITextView成 ...
- ios开发讲解之anchorPoint和position详解
引言 相信初接触到CALayer的人都会遇到以下几个问题: 为什么修改anchorPoint会移动layer的位置? CALayer的position点是哪一点呢? anchorPoint与posi ...
- iOS 谓词讲解
1.NSPredicate (1)比较运算符 1.比较运算符 > .< .== . >= .<= . != 运算符还可以跟逻辑运算符一起使用,&& , || ...
随机推荐
- 用 Python 脚本实现对 Linux 服务器的监控
目前 Linux 下有一些使用 Python 语言编写的 Linux 系统监控工具 比如 inotify-sync(文件系统安全监控软件).glances(资源监控工具)在实际工作中,Linux 系统 ...
- 做 fzu oj 1106 题目学到的
题目如下 这道题的意识就是给一个数问是否可以又阶乘之和构成,而难点主要是在于如果是7的话就是1!+3!,并不是单纯的从1的阶乘开始加,而是没顺序的,所以这题就得用到递归. (大概就是函数自己调用函数自 ...
- POJ 2378 Tree Cutting (DFS)
题目链接:http://poj.org/problem?id=2378 一棵树,去掉一个点剩下的每棵子树节点数不超过n/2.问有哪些这样的点,并按照顺序输出. dfs回溯即可. //#pragma c ...
- 【OpenGL】glFinish()和glFlush()函数详解-[转]
通常情况下,OpenGL指令不是立即执行的.它们首先被送到指令缓冲区,然后才被送到硬件执行.glFinish和glFlush都是强制将命令缓冲区的内容提交给硬件执行. 一.glFinish()函数 ...
- Regular Expression--Good parts
匹配URL的正则表达式 <!doctype html><html lang="en"><head> <meta charset=" ...
- CSS(04) 定位
布局常用的三种:标准流.定位.浮动: 1.文档流-标准流 窗体自上而下分成一行行(元素在 (X)HTML 中的位置),并在一行行中从左到右排放元素: 2.CSS 定位 Position 属性(绝对定位 ...
- eclipse提示servlet不存在 的解决办法
在以前的版本中,Tomcat的common/lib目录下有一个名为servlet-api.jar的包,把它拷贝至你的java安装目录下jre/lib/ext下就可以了. 如果是:tomcat6就在To ...
- cocos2d-x android java调用C++
转自:http://www.cnblogs.com/mokey/archive/2013/04/10/3012961.html java调用C++ 1.在jniHelper.java文件中定义一个方法 ...
- 让AllocateHwnd接受一般函数地址作参数
http://www.xuebuyuan.com/1889769.html Classes单元的AllocateHWnd函数是需要传入一个处理消息的类的方法的作为参数的,原型: function Al ...
- A few things to remember while coding in Python.
A few things to remember while coding in Python. - 17 May 2012 - UPDATE: There has been much discuss ...