天天看点

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 从原图片中取小图  

//字符串的 写入可用  nsstring本身的画图方法   

 -(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);  

//实现逐变颜色填充方法 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来填充形状内的颜色.  

//填充一个路径的时候,路径里面的子路径都是独立填充的。  

//假如是重叠的路径,决定一个点是否被填充,有两种规则  

 1,nonzero winding number rule:非零绕数规则,假如一个点被从左到右跨过,计数器+1,从右到左跨过,计数器-1,最后,如果结果是0,那么不填充,如果是非零,那么填充。  

 2,even-odd rule: 奇偶规则,假如一个点被跨过,那么+1,最后是奇数,那么要被填充,偶数则不填充,和方向没有关系。  

 cgcontexteofillpath //使用奇偶规则填充当前路径  

 cgcontextfillpath //使用非零绕数规则填充当前路径  

 cgcontextfillrect //填充指定的矩形  

 cgcontextfillrects //填充指定的一些矩形  

 cgcontextfillellipseinrect //填充指定矩形中的椭圆  

 cgcontextdrawpath //两个参数决定填充规则,kcgpathfill表示用非零绕数规则,kcgpatheofill表示用奇偶规则,kcgpathfillstroke表示填充,kcgpatheofillstroke表示描线,不是填充  

//设置当一个颜色覆盖上另外一个颜色,两个颜色怎么混合  

//默认方式是  

 result = (alpha * foreground) + (1 - alpha) * background  

 cgcontextsetblendmode :设置blend mode.  

 cgcontextsavegstate :保存blend mode.  

 cgcontextrestoregstate:在没有保存之前,用这个函数还原blend mode.  

 cgcontextsetblendmode 混合俩种颜色