91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS怎樣將圖片裁剪成圓形

發布時間:2021-02-01 11:44:51 來源:億速云 閱讀:1111 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關iOS怎樣將圖片裁剪成圓形的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

原圖:

iOS怎樣將圖片裁剪成圓形

圓形圖片裁剪效果:

iOS怎樣將圖片裁剪成圓形

裁剪成帶邊框的圓形圖片:

iOS怎樣將圖片裁剪成圓形

核心代碼:

#import <UIKit/UIKit.h>

@interface UIImage (image)

/**
 * 生成一張圓形圖片
 *
 * @param image    要裁剪的圖片
 *
 * @return 生成的圓形圖片
 */

+ (UIImage *)imageWithClipImage:(UIImage *)image;

/**
 * 生成一張帶有邊框的圓形圖片
 *
 * @param borderW   邊框寬度
 * @param borderColor 邊框顏色
 * @param image    要添加邊框的圖片
 *
 * @return 生成的帶有邊框的圓形圖片
 */
+ (UIImage *)imageWithBorder:(CGFloat)borderW color:(UIColor *)borderColor image:(UIImage *)image;

@end
#import "UIImage+image.h"

@implementation UIImage (image)

+ (UIImage *)imageWithClipImage:(UIImage *)image{
+ 
  //1.開啟跟原始圖片一樣大小的上下文
  UIGraphicsBeginImageContextWithOptions(image.size, NO, 0);
  //2.設置一個圓形裁剪區域
  //2.1繪制一個圓形
  UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, image.size.width, image.size.height)];
  //2.2.把圓形的路徑設置成裁剪區域
  [path addClip];//超過裁剪區域以外的內容都給裁剪掉
  //3.把圖片繪制到上下文當中(超過裁剪區域以外的內容都給裁剪掉)
  [image drawAtPoint:CGPointZero];
  //4.從上下文當中取出圖片
  UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
  //5.關閉上下文
  UIGraphicsEndImageContext();

  return newImage;
}

+ (UIImage *)imageWithBorder:(CGFloat)borderW color:(UIColor *)borderColor image:(UIImage *)image{

  //1.開啟一個上下文
  CGSize size = CGSizeMake(image.size.width + 2 * borderW, image.size.height + 2 * borderW);
  UIGraphicsBeginImageContextWithOptions(size, NO, 0);
  //2.繪制大圓,顯示出來
  UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, size.width, size.height)];
  [borderColor set];
  [path fill];
  //3.繪制一個小圓,把小圓設置成裁剪區域
  UIBezierPath *clipPath = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(borderW, borderW, image.size.width, image.size.height)];
  [clipPath addClip];
  //4.把圖片繪制到上下文當中
  [image drawAtPoint:CGPointMake(borderW, borderW)];
  //5.從上下文當中取出圖片
  UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
  //6.關閉上下文
  UIGraphicsEndImageContext();

  return newImage;
}

感謝各位的閱讀!關于“iOS怎樣將圖片裁剪成圓形”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

ios
AI

沈阳市| 巴青县| 丰原市| 清涧县| 西畴县| 嘉禾县| 胶南市| 开化县| 翁牛特旗| 佛山市| 图们市| 万盛区| 紫阳县| 塔河县| 鹤山市| 宜宾市| 专栏| 安平县| 乐清市| 寻乌县| 昌黎县| 乌审旗| 阜阳市| 晋中市| 化德县| 阳城县| 临汾市| 南投市| 惠州市| 辉南县| 垫江县| 金华市| 栾城县| 崇州市| 乌拉特后旗| 高唐县| 南阳市| 瓮安县| 定陶县| 隆子县| 尉氏县|