How to fetch squared thumbnails from PHImageManager?

后端 未结 5 821
日久生厌
日久生厌 2021-01-31 04:51

Has anybody idea how to fetch squared thumbs from PHImageManager? PHImageContentModeAspectFill option has no effect.

[[PHImageManager defaultManager]
  requestIm         


        
5条回答
  •  囚心锁ツ
    2021-01-31 05:40

    let squareSize = CGSize(100, 100)
    let options = PHImageRequestOptions()
    options.resizeMode = .exact
    options.deliveryMode = .highQualityFormat
    PHImageManager.default().requestImage(for: asset, targetSize: squareSize, contentMode: .aspectFill, options: options) { (image, _) in
    
        // Use the image.
    }
    

提交回复
热议问题