CGContext的基本认识
简介:
<ol start="1" class="dp-cpp" style="padding:0px; border:none; list-style-position:initial; color:rgb(92,92,92); font-family:Consolas,'Courier New',Courier,mono,serif; line-height:26px; margin:0px
- CGContextRef context = UIGraphicsGetCurrentContext(); 设置上下文
- CGContextMoveToPoint 开始画线
- CGContextAddLineToPoint 画直线
-
- CGContextAddEllipseInRect 画一椭圆
- CGContextSetLineCap 设置线条终点形状
- CGContextSetLineDash 画虚线
- CGContextAddRect 画一方框
- CGContextStrokeRect 指定矩形
- CGContextStrokeRectWithWidth 指定矩形线宽度
- CGContextStrokeLineSegments 一些直线
-
- CGContextAddArc 画已曲线 前俩店为中心 中间俩店为起始弧度 最后一数据为0则顺时针画 1则逆时针
- CGContextAddArcToPoint(context,0,0, 2, 9, 40);
- 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 从原图片中取小图
-
-
- -(CGSize)drawInRect:(CGRect)rect
- withFont:(UIFont *)font
- lineBreakMode:(UILineBreakMode)lineBreakMode
- alignment:(UITextAlignment)alignment;来写进去即可
-
-
- UIGraphicsBeginImageContext(newSize);
- UIImage* newImage = UIGraphicsGetImageFromCurrentImageContext();
- UIGraphicsEndImageContext();
-
- CGColorGetComponents() 返回颜色的各个直 以及透明度 可用只读const float 来接收 是个数组
-
-
- CGImageRef image=CGImageRetain(img.CGImage);
- CGContextDrawImage(context, CGRectMake(10.0, height - 100.0, 90.0, 90.0), image);
-
-
- 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来填充形状内的颜色.
-
-
-
- 1,nonzero winding number rule:非零绕数规则,假如一个点被从左到右跨过,计数器+1,从右到左跨过,计数器-1,最后,如果结果是0,那么不填充,如果是非零,那么填充。
- 2,even-odd rule: 奇偶规则,假如一个点被跨过,那么+1,最后是奇数,那么要被填充,偶数则不填充,和方向没有关系。
-
-
- CGContextEOFillPath
- CGContextFillPath
- CGContextFillRect
- CGContextFillRects
- CGContextFillEllipseInRect
- CGContextDrawPath
-
-
-
-
- result = (alpha * foreground) + (1 - alpha) * background
-
- CGContextSetBlendMode :设置blend mode.
- CGContextSaveGState :保存blend mode.
- CGContextRestoreGState:在没有保存之前,用这个函数还原blend mode.
- CGContextSetBlendMode 混合俩种颜色