IOS中設置圓角圖片

##iOS設置圓角的三種方式框架

<hr/>函數

1 方法一 經過設置layer的屬性

UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
   //只須要設置layer層的兩個屬性
   //設置圓角
    imageView.layer.cornerRadius = imageView.frame.size.width / 2;
   //將多餘的部分切掉
    imageView.layer.masksToBounds = YES;
    [self.view addSubview:imageView];

2 方法二 使用貝塞爾曲線UIBezierPath和Core Graphics框架畫出一個圓角

UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
    imageView.image = [UIImage imageNamed:@"img"];
    //建立位圖
    //參數二 NO 表示圖形不使用透明
    //參數三 圖像縮放比例爲1.0
    UIGraphicsBeginImageContextWithOptions(imageView.bounds.size, NO, 1.0);
    //使用貝塞爾曲線畫出一個圓形圖
    [[UIBezierPath bezierPathWithRoundedRect:imageView.bounds cornerRadius:imageView.frame.size.width] addClip];
    [imageView drawRect:imageView.bounds];

    //從上下文中獲取圖片
    imageView.image = UIGraphicsGetImageFromCurrentImageContext();
     //結束畫圖 關閉圖形上下文
    UIGraphicsEndImageContext();
    [self.view addSubview:imageView];
2.1 UIGraphicsBeginImageContextWithOptions函數解析
函數原型爲:
void UIGraphicsBeginImageContextWithOptions(CGSize size, BOOL opaque, CGFloat scale);
size——參數size爲新建立的位圖上下文的大小。它同時是由UIGraphicsGetImageFromCurrentImageContext函數返回的圖形大小
opaque—透明開關,若是圖形徹底不用透明,設置爲YES以優化位圖的存儲。
scale—–縮放因子 iPhone 4是2.0,其餘是1.0。雖然這裏能夠用[UIScreen mainScreen].scale來獲取,但實際上設爲0後,系統就會自動設置正確的比例了。


UIGraphicsBeginImageContext
建立一個基於位圖的上下文(context),並將其設置爲當前上下文(context)。方法聲明以下:
void UIGraphicsBeginImageContext(CGSize size);
參數size爲新建立的位圖上下文的大小。它同時是由UIGraphicsGetImageFromCurrentImageContext函數返回的圖形大小。
該函數的功能同UIGraphicsBeginImageContextWithOptions的功能相同,至關與UIGraphicsBeginImageContextWithOptions的opaque參數爲NO,scale因子爲1.0。

3 方法三 使用CAShapeLayer和UIBezierPath設置圓角

須要導入<AVFoundation/AVFoundation.h>優化

UIImageView *imageView = [[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
imageView.image = [UIImage imageNamed:@"img"];

//定義繪製曲線路徑
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:imageView.bounds byRoundingCorners:UIRectCornerAllCorners cornerRadii:imageView.bounds.size];

//初始化
CAShapeLayer *maskLayer = [[CAShapeLayer alloc]init];
//設置大小
maskLayer.frame = imageView.bounds;
//設置繪製圖形曲線
maskLayer.path = maskPath.CGPath;
//設置layer mask
imageView.layer.mask = maskLayer;
[self.view addSubview:imageView];

在每一View的layer層中有一個mask屬性,他就是專門來設置該View的遮罩效果的。該mask自己也是一個layer層code

相關文章
相關標籤/搜索