We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for considering to open an issue. Before you submit your issue, please confirm these boxes are checked.
When we download JPG image with progressive option, we have memory leaks, watched by Xcode Instruments.
Just simple class to reproduce:
import Kingfisher import UIKit class ViewController: UIViewController { @IBOutlet weak var imageView: UIImageView! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view. } @IBAction func downloadTap(_ sender: Any) { guard let url = URL(string: "https://images.contenthub.dev/bali6j22f8ll/733291a9e9679715889ddaf1e238166d/Finkenberg.jpg?fit=fill&f=center&fm=jpg&fl=progressive&q=85&w=943") else { return } let resource: Resource = KF.ImageResource(downloadURL: url) let options: KingfisherOptionsInfo = [.progressiveJPEG(ImageProgressive())] // No memory leaks // imageView.kf.setImage(with: resource) // Memory leaks imageView.kf.setImage(with: resource, options: options) } }
Attaching image and trace from Xcode Instruments. kingfisher-memory-leaks.trace.zip
The text was updated successfully, but these errors were encountered:
The described memory leak is reproducible in the JPEG Progression Scene of the 'Demo' project.
Sorry, something went wrong.
No branches or pull requests
Check List
Thanks for considering to open an issue. Before you submit your issue, please confirm these boxes are checked.
Issue Description
What
When we download JPG image with progressive option, we have memory leaks, watched by Xcode Instruments.
Reproduce
Just simple class to reproduce:
Other Comment
Attaching image and trace from Xcode Instruments.
kingfisher-memory-leaks.trace.zip
The text was updated successfully, but these errors were encountered: