繁体   English   中英

如何将SDWebImage转换为UIImage?

[英]How can I convert an SDWebImage to a UIImage?

我需要将使用SDWebImage从Firebase下载的图像转换为UIImage。 我怎样才能做到这一点? 到目前为止,这是我的代码:

Database.database().reference().child("movies").child(movieNumString).observeSingleEvent(of: .value, with: { (snapshot) in
    if let dictionary = snapshot.value as? [String: AnyObject] {
        let UrlString: String? = ((dictionary["posterPhotoURL"] as? String))
        let Url = URL(string: (UrlString)!)

        self.moviePosterImageView.sd_setImage(with: Url, placeholderImage: #imageLiteral(resourceName: "PImage"))
}

您可以尝试此callBack方法

self.moviePosterImageView.sd_setImage(with:Url,
               placeholderImage: #imageLiteral(resourceName: "PImage"), 
               options: [],
               completed: { (image, error,cacheType, url) in
        // here image is the UIImage    

    self.moviePosterImageView.image = image?.roundedWithBorder(width: 2, color: .red)   
})

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM