iOS--坐標(biāo)變換Quartz 2D中的CGContextTranslateCTM压真、CGContextScaleCTM、故硅,有需要的朋友可以參考下。
iOS講義總結(jié)
在iOS中纵搁,Quartz 2D提供了坐標(biāo)變換支持吃衅。
一、特殊的坐標(biāo)變換(平移腾誉、縮放徘层、旋轉(zhuǎn))
- void CGContextTranslateCTM ( CGContextRef c, CGFloat tx, CGFloat ty ):平移坐標(biāo)系統(tǒng)。
該方法相當(dāng)于把原來位于 (0, 0) 位置的坐標(biāo)原點平移到 (tx, ty) 點利职。在平移后的坐標(biāo)系統(tǒng)上繪制圖形時趣效,所有坐標(biāo)點的 X 坐標(biāo)都相當(dāng)于增加了 tx,所有點的 Y 坐標(biāo)都相當(dāng)于增加了 ty猪贪。
- void CGContextTranslateCTM ( CGContextRef c, CGFloat tx, CGFloat ty ):平移坐標(biāo)系統(tǒng)。
- void CGContextScaleCTM ( CGContextRef c, CGFloat sx, CGFloat sy ):縮放坐標(biāo)系統(tǒng)跷敬。
該方法控制坐標(biāo)系統(tǒng)水平方向上縮放 sx,垂直方向上縮放 sy哮伟。在縮放后的坐標(biāo)系統(tǒng)上繪制圖形時干花,所有點的 X 坐標(biāo)都相當(dāng)于乘以 sx 因子妄帘,所有點的 Y 坐標(biāo)都相當(dāng)于乘以 sy 因子楞黄。
- void CGContextScaleCTM ( CGContextRef c, CGFloat sx, CGFloat sy ):縮放坐標(biāo)系統(tǒng)跷敬。
- void CGContextRotateCTM ( CGContextRef c, CGFloat angle ):旋轉(zhuǎn)坐標(biāo)系統(tǒng)。
該方法控制坐標(biāo)系統(tǒng)旋轉(zhuǎn) angle 弧度抡驼。在縮放后的坐標(biāo)系統(tǒng)上繪制圖形時鬼廓,所有坐標(biāo)點的 X、Y 坐標(biāo)都相當(dāng)于旋轉(zhuǎn)了 angle弧度之后的坐標(biāo)致盟。
為了讓開發(fā)者在進行坐標(biāo)變換時無須計算多次坐標(biāo)變換后的累加結(jié)果碎税,Quartz 2D還提供了如下兩個方法來保存、恢復(fù)繪圖狀態(tài)馏锡。
- void CGContextRotateCTM ( CGContextRef c, CGFloat angle ):旋轉(zhuǎn)坐標(biāo)系統(tǒng)。
- void CGContextSaveGState ( CGContextRef c ):保存當(dāng)前的繪圖狀態(tài)雷蹂。
- void CGContextRestoreGState ( CGContextRef c ):恢復(fù)之前保存的繪圖狀態(tài)。
需要說明的是杯道,CGContextSaveGState() 函數(shù)保存的繪圖狀態(tài)匪煌,不僅包括當(dāng)前坐標(biāo)系統(tǒng)的狀態(tài),也包括當(dāng)前設(shè)置的填充風(fēng)格党巾、線條風(fēng)格萎庭、陰影風(fēng)格等各種繪圖狀態(tài)。但 CGContextSaveGState() 函數(shù)不會保存當(dāng)前繪制的圖形齿拂。
二驳规、通用的坐標(biāo)變換(通過變換矩陣進行變換)
除了以上3個坐標(biāo)轉(zhuǎn)換方法之外,Quartz 2D提供更通用的坐標(biāo)轉(zhuǎn)換方法署海。
void CGContextConcatCTM ( CGContextRef c, CGAffineTransform transform ):使用 transform 變換矩陣對 CGContextRef 的坐標(biāo)系統(tǒng)執(zhí)行變換吗购,通過使用坐標(biāo)矩陣可以對坐標(biāo)系統(tǒng)執(zhí)行任意變換医男。
CGAffineTransform CGContextGetCTM ( CGContextRef c ):獲取CGContextRef的坐標(biāo)系統(tǒng)的變換矩陣。
上述兩個方法中都涉及一個關(guān)于矩陣的API:CGAffineTransform捻勉。
創(chuàng)建CGAffineTransform的4種方式:
- CGAffineTransform CGAffineTransformMakeTranslation ( CGFloat tx, CGFloat ty ):創(chuàng)建進行位移變換的變換矩陣昨登。該函數(shù)的兩個參數(shù)與前面介紹的位移變換的兩個參數(shù)的作用相同。
- CGAffineTransform CGAffineTransformMakeScale ( CGFloat sx, CGFloat sy ):創(chuàng)建進行縮放變換的變換矩陣贯底。該函數(shù)的兩個參數(shù)與前面介紹的縮放變換的兩個參數(shù)的作用相同丰辣。
- CGAffineTransform CGAffineTransformMakeRotation ( CGFloat angle ):創(chuàng)建進行旋轉(zhuǎn)變換的變換矩陣。該函數(shù)的參數(shù)與前面介紹的旋轉(zhuǎn)變換的參數(shù)的作用相同禽捆。
- CGAffineTransform CGAffineTransformMake ( CGFloat a, CGFloat b, CGFloat c, CGFloat d, CGFloat tx, CGFloat ty ):該函數(shù)使用自定義變換矩陣執(zhí)行變換笙什。
其中 ( a, b, c, d )會形成變換矩陣,tx胚想、ty為橫向和縱向的位移琐凭,變換后結(jié)果應(yīng)該為:
a, b
(x, y) x (c, d) + (tx, ty) = (xa x yc, xb x yd) + (tx, ty) =(xa x yc + , xb x yd + ty)。
一般坐標(biāo)變換矩陣
1)水平鏡像(繞 Y 軸做對稱變化):CGAffineTransformMake ( -1, 0, 0, 1, 0, 0 )
-1, 0
0, 1
- 垂直鏡像(繞 X 軸做對稱變化):CGAffineTransformMake ( 1, 0, 0, -1, 0, 0 )
1, 0
0, -1
3)繞 x=y(tǒng)軸做對稱變化:CGAffineTransformMake ( 0, 1, 1, 0, 0, 0 )
0, 1
1, 0
4)繞x =-y軸做對稱變化:CGAffineTransformMake ( 0, -1, -1, 0, 0, 0 )
0, -1
-1, 0
5)做“水平傾斜”的變換浊服,此時 Y 坐標(biāo)無須變換统屈,只要將 X 坐標(biāo)增加 tan( angle ) x X 即可(angle 代表順時針轉(zhuǎn)過的角度):CGAffineTransformMake ( 1, 0, tan(angle), 1, 0, 0 )
1, 0
tan(angle), 1
6)做“垂直傾斜”的變換,此時 X 坐標(biāo)無須變換牙躺,只要將 Y 坐標(biāo)減少 tan( angle ) x X 即可:CGAffineTransformMake ( 1, -tan(angle), 0, 1 )
1, -tan(angle)
0, 1
三愁憔、復(fù)合矩陣坐標(biāo)變換
- CGAffineTransform CGAffineTransformTranslate ( CGAffineTransform t, CGFloat tx, CGFloat, ty ):對已有的變換矩陣 t 額外增加位移變換。
- CGAffineTransform CGAffineTransformScale ( CGAffineTransform t, CGFloat sx, CGFloat sy ):對已有的變換矩陣 t 額外增加縮放變換孽拷。
- CGAffineTransform CGAffineTransformRotate ( CGAffineTransform t, CGFloat angle ):對已有的變換矩陣 t 額外增加旋轉(zhuǎn)變換吨掌。
- CGAffineTransform CGAffineTransformInvert ( CGAffineTransform t ):對已有的變換矩陣 t 進行反轉(zhuǎn)。
- CGAffineTransform CGAffineTransformConcat ( CGAffineTransform t1, CGAffineTransform t2 ):將兩個變換矩陣進行疊加脓恕。
四膜宋、對CGPoint、CGSize和CGRect進行坐標(biāo)變換 - CGPoint CGPointApplyAffineTransform ( CGPoint point, CGAffineTransform t ):對指定的CGPoint執(zhí)行變換炼幔,函數(shù)返回坐標(biāo)變換后的CGPoint秋茫。
- CGSize CGSizeApplyAffineTransform ( CGSize size, CGAffineTransform t ):對指定的CGSize執(zhí)行變換,函數(shù)返回坐標(biāo)變換后的CGSize乃秀。
- CGRect CGRectApplyAffineTransform ( CGRect rect, CGAffineTransform t ):對指定的CGRect執(zhí)行變換肛著,函數(shù)返回坐標(biāo)變換后的CGRect。
五环形、對UIView進行坐標(biāo)變換
UIView提供了一個transform屬性策泣,該屬性支持設(shè)置CGAffineTransform變換矩陣,這樣就可對UIView控件本身進行坐標(biāo)變換抬吟,從而改變UIView控件本身的外觀萨咕。