美文网首页
iOS 截取图片的指定部分的实现(Swift)

iOS 截取图片的指定部分的实现(Swift)

作者: rain_2540 | 来源:发表于2019-10-21 15:39 被阅读0次
    import UIKit
    
    extension UIImage {
    
        /// 截取图片的指定区域,并生成新图片
        /// - Parameter rect: 指定的区域
        func cropping(to rect: CGRect) -> UIImage? {
            let scale = UIScreen.main.scale
            let x = rect.origin.x * scale
            let y = rect.origin.y * scale
            let width = rect.size.width * scale
            let height = rect.size.height * scale
            let croppingRect = CGRect(x: x, y: y, width: width, height: height)
            // 截取部分图片并生成新图片
            guard let sourceImageRef = self.cgImage else { return nil }
            guard let newImageRef = sourceImageRef.cropping(to: croppingRect) else { return nil }
            let newImage = UIImage(cgImage: newImageRef, scale: scale, orientation: .up)
            return newImage
        }
    
    }
    
    

    相关文章

      网友评论

          本文标题:iOS 截取图片的指定部分的实现(Swift)

          本文链接:https://www.haomeiwen.com/subject/dzmtvctx.html