CGContext含义
| 代码 | 含义 |
|---|---|
| CGContextRef context = UIGraphicsGetCurrentContext(); | 设置上下文 |
| CGContextMoveToPoint | 开始画线 |
| CGContextAddLineToPoint | 画直线 |
| CGContextAddEllipseInRect | 画一椭圆 |
| CGContextSetLineCap | 设置线条终点形状 |
| CGContextSetLineDash | 画虚线 |
| CGContextAddRect | 画一方框 |
| CGContextStrokeRect | 指定矩形 |
| CGContextStrokeRectWithWidth | 指定矩形线宽度 |
| CGContextStrokeLineSegments | 一些直线 |
| CGContextAddArc | 画已曲线 前俩店为中心 中间俩店为起始弧度 最后一数据为0则顺时针画 1则逆时针 |
| CGContextAddArcToPoint(context,0,0, 2, 9, 40); | 先画俩条线从point 到 第1点 , 从第1点到第2点的线 切割里面的圆 |
| CGContextSetShadowWithColor | 设置阴影 |
| CGContextSetRGBFillColor | 这只填充颜色 |
| CGContextSetRGBStrokeColor | 画笔颜色设置 |
| CGContextSetFillColorSpace | 颜色空间填充 |
| CGConextSetStrokeColorSpace | 颜色空间画笔设置 |
| CGContextFillRect | 补充当前填充颜色的rect |
| CGContextSetAlaha | 透明度 |
| CGContextTranslateCTM | 改变画布位置 |
| CGContextSetLineWidth | 设置线的宽度 |
| CGContextAddRects | 画多个线 |
| CGContextAddQuadCurveToPoint | 画曲线 |
| CGContextStrokePath | 开始绘制图片 |
| CGContextDrawPath | 设置绘制模式 |
| CGContextClosePath | 封闭当前线路 |
| CGContextTranslateCTM(context, 0, rect.size.height); CGContextScaleCTM(context, 1.0, -1.0); | 反转画布 |
| CGContextSetInterpolationQuality | 背景内置颜色质量等级 |
| CGImageCreateWithImageInRect | 从原图片中取小图 |
| CGColorGetComponents() | 返回颜色的各个直 以及透明度 可用只读const float 来接收 是个数组 |
| CGContextEOFillPath | 使用奇偶规则填充当前路径 |
| CGContextFillPath | 使用非零绕数规则填充当前路径 |
| CGContextFillRect | 填充指定的矩形 |
| CGContextFillRects | 填充指定的一些矩形 |
| CGContextFillEllipseInRect | 填充指定矩形中的椭圆 |
| CGContextDrawPath | 两个参数决定填充规则, |
| kCGPathFill | 表示用非零绕数规则, |
| kCGPathEOFill | 表示用奇偶规则, |
| kCGPathFillStroke | 表示填充 |
| kCGPathEOFillStroke | 表示描线,不是填充 |
| CGContextSetBlendMode | 设置blend mode. |
| CGContextSaveGState | 保存blend mode. |
| CGContextRestoreGState | 在没有保存之前,用这个函数还原blend mode. |
| CGContextSetBlendMode | 混合俩种颜色 |
1、字符串的 写入可用 nsstring本身的画图方法
-(CGSize)drawInRect:(CGRect)rect
withFont:(UIFont *)font
lineBreakMode:(UILineBreakMode)lineBreakMode
alignment:(UITextAlignment)alignment;来写进去即可
2、对图片放大缩小的功能就是慢了点
UIGraphicsBeginImageContext(newSize);
UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
3、画图片
CGImageRef image=CGImageRetain(img.CGImage);
CGContextDrawImage(context, CGRectMake(10.0, height - 100.0, 90.0, 90.0), image);
4、实现逐变颜色填充方法 CGContextClip(context);
CGColorSpaceRef rgb = CGColorSpaceCreateDeviceRGB();
CGFloat colors[] =
{
204.0 / 255.0, 224.0 / 255.0, 244.0 / 255.0, 1.00,
29.0 / 255.0, 156.0 / 255.0, 215.0 / 255.0, 1.00,
0.0 / 255.0, 50.0 / 255.0, 126.0 / 255.0, 1.00,
};
CGGradientRef gradient = CGGradientCreateWithColorComponents(rgb, colors, NULL, sizeof(colors)/(sizeof(colors[0])*4));
CGColorSpaceRelease(rgb);
CGContextDrawLinearGradient(context, gradient,CGPointMake(0.0,0.0) ,CGPointMake(0.0,self.frame.size.height),
kCGGradientDrawsBeforeStartLocation);
注: 画完图后,必须
先用CGContextStrokePath来描线,即形状
后用CGContextFillPath来填充形状内的颜色.
5、填充一个路径的时候,路径里面的子路径都是独立填充的。
假如是重叠的路径,决定一个点是否被填充,有两种规则
1,nonzero winding number rule:非零绕数规则,假如一个点被从左到右跨过,计数器+1,从右到左跨过,计数器-1,最后,如果结果是0,那么不填充,如果是非零,那么填充。
2,even-odd rule: 奇偶规则,假如一个点被跨过,那么+1,最后是奇数,那么要被填充,偶数则不填充,和方向没有关系。
6、设置当一个颜色覆盖上另外一个颜色,两个颜色怎么混合
默认方式是
result = (alpha * foreground) + (1 - alpha) * background
作者:JanzTam
链接:http://www.jianshu.com/p/1d0e405f166e
來源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
CGContext含义的更多相关文章
- CoreGraphics --- CGContext
CGContext又叫图形上下文,相当于一块画布,以堆栈形式存放,只有在当前context上绘图才有效.iOS有分多种图形上下文,其中UIView自带提供的在drawRect:方法中通过UIGraph ...
- CGContext
CGContext又叫图形上下文,相当于一块画布,以堆栈形式存放,只有在当前 context上绘图才有效.iOS有分多种图形上下文,其中UIView自带提供的在drawRect:方法中通过 UIGra ...
- 由css reset想到的深入理解margin及em的含义
由css reset想到的深入理解margin及em的含义 原文地址:http://www.ymblog.net/content_189.html 经常看到这样语句,*{ margin:0px;pad ...
- Stack的三种含义
作者: 阮一峰 日期: 2013年11月29日 学习编程的时候,经常会看到stack这个词,它的中文名字叫做"栈". 理解这个概念,对于理解程序的运行至关重要.容易混淆的是,这个词 ...
- wireshark抓包工具简介以及tcp三次握手的一些含义
wireshark是非常流行的网络封包分析软件,功能十分强大.可以截取各种网络封包,显示网络封包的详细信息.使用wireshark的人必须了解网络协议,否则就看不懂wireshark了.为了安全考虑, ...
- PV、EV、AC、BAC、EAC、ETC等计算公式含义
PV.EV.AC.BAC.EAC.ETC等计算公式含义 PV Planned Value:计划值 应该完成多少工作, (按照计划截止目前应该花费的预算) AC Actual Cost:实际成本, 完成 ...
- [MySQL]show index from tb_name命令各列的含义
show index from table_name 这个命令有助于诊断性能低下的查询,尤其是查询是否使用了可用的索引. 下面介绍下 这个命令显示的结果列的含义: | Table | Non_uniq ...
- CPU状态信息us,sy,ni,id,wa,hi,si,st含义
转自:http://blog.csdn.net/sasoritattoo/article/details/9318893 转自:http://fishermen.iteye.com/blog/1995 ...
- http错误代码含义中英文对照
Http错误代码含义中文 概要当用户试图通过 HTTP 或文件传输协议 (FTP) 访问一台正在运行 Internet 信息服务 (IIS) 的服务器上的内容时,IIS 返回一个表示该请求的状态的数字 ...
随机推荐
- maven 打包jar && lib
一.springboot 打包成jar 1.pom.xml <build> <!-- jar的名称--> <finalName>shiro</finalNam ...
- Nginx 404 500
Nginx反向代理自定义404错误页面 http中添加 proxy_intercept_errors on; server中添加 error_page 404 = https://www.longda ...
- Android线性渐变
布局实现: 1. 在res中建立drawable文件夹. 2. 在drawable文件夹中建立shape.xml. 3. shape.xml的代码如下: <?xml version=" ...
- [ Java ] [ JUnit ] [ Eclipse ] coverage
官方資訊: https://www.eclemma.org/ - 簡短使用範例說明: https://dzone.com/articles/java-code-coverage-in-eclipse ...
- auto_ftp_sh
#!/usr/bin/env python # -*- coding:utf-8 -*- import paramiko import time mydate = time.strftime( ...
- What are lazy variables?
Written by Paul Hudson @twostraws It's very common in iOS to want to create complex objects only ...
- 数据结构(3) 第三天 栈的应用:就近匹配/中缀表达式转后缀表达式 、树/二叉树的概念、二叉树的递归与非递归遍历(DLR LDR LRD)、递归求叶子节点数目/二叉树高度/二叉树拷贝和释放
01 上节课回顾 受限的线性表 栈和队列的链式存储其实就是链表 但是不能任意操作 所以叫受限的线性表 02 栈的应用_就近匹配 案例1就近匹配: #include <stdio.h> in ...
- Javascript中的原型链,__proto__和prototype等问题总结
1.js中除了原始数据类型 都是对象. 包括函数也是对象,可能类似于C++函数对象把 应该是通过解释器 进行()操作符重载或其他操作, 用的时候把它当函数用就行 但是实际上本质是一个对象 原型也是一个 ...
- 前端异步编程之Promise和async的用法
传统的异步解决方案采用回调函数和事件监听的方式,而这里主要记录两种异步编程的新方案: ES6的新语法Promise ES2017引入的async函数 Generator函数(略) Promise的含义 ...
- Vue JsonView 树形格式化代码插件
组件代码(临时粘出来) <template> <div class="bgView"> <div :class="['json-view' ...