swift UIGraphicsGetImageFromCurrentImageContext can't release memory

前端 未结 2 1001
清歌不尽
清歌不尽 2021-02-05 08:39

Swift Code

When we get a screenshot of a UIView, we use this code usually:

UIGraphicsBeginImageContextWithOptions(frame.size, false, scale)
drawViewHie         


        
2条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-05 08:42

    I solved this problem by putting image operations in another queue!

    private func processImage(image: UIImage, size: CGSize, completion: (image: UIImage) -> Void) {
        dispatch_async(dispatch_get_global_queue(Int(QOS_CLASS_USER_INITIATED.rawValue), 0)) {
            UIGraphicsBeginImageContextWithOptions(size, true, 0)
            image.drawInRect(CGRect(origin: CGPoint.zero, size: size))
            let tempImage = UIGraphicsGetImageFromCurrentImageContext()
            UIGraphicsEndImageContext()
    
            completion(image: tempImage)
        }
    }
    

提交回复
热议问题