Resize UIImage to 200x200pt/px

前端 未结 13 2079
后悔当初
后悔当初 2020-11-27 11:25

I have been struggling resizing an image. Basically I have stumpled upon: How to scale down a UIImage and make it crispy / sharp at the same time instead of blurry?

13条回答
  •  -上瘾入骨i
    2020-11-27 12:00

    This code works excellently on square image and won't lose the quality

    extension UIImage {
    
    func resize(targetSize: CGSize) -> UIImage {
        return UIGraphicsImageRenderer(size:targetSize).image { _ in
            self.draw(in: CGRect(origin: .zero, size: targetSize))
        }
    }
    
    }
    

    Answer From: Resize Image without losing quality

提交回复
热议问题