Yang Chao
Yang Chao
Hello @Dfmarulanda , I'm sorry to hear this. But I can't reproduce it in my own project (using KingfisherWebP 0.5.0, Kingfisher 5.5.0, libwebp 1.0.2 & Xcode 10.2). After double checking...
I'm guessing you are using `ImageSlideshow`, right? I set up a demo project with `ImageSlideshow`, but still couldn't reproduce this issue. Your screenshot just shows that KingfisherWebP allocates memory, but...
Hello, have you tried the `clearMemoryCache` method? Did it fix this memory problem?
Hi @duyhungtnn @WangKunKun @Out1and3r , I'm investigating this problem now, but cannot reproduce it myself currently. In order to make sure it's not the cache feature in Kingfisher itself, would...
> I believe the leak is mostly caused by the following allocation: > > ``` > void *bufCopy = malloc(bufSize); > ``` > > It is this line: > >...
> 内存暴增是由于缓存了解析的每一帧图,目的是降低CPU的消耗  所以即使设置KingfisherManager缓存上限也是没用的 [#25 (comment)](https://github.com/yeatse/KingfisherWebP/issues/25#issuecomment-534470473)  简单的做法就是设置frameCache缓存上限,并且缓存处理过的每一帧图 NSCache 本身会在收到 memory warning 的时候清理资源所以感觉还好,不加的话在某些场景会非常卡。后面我可以提供个开关配置下。
You need to incorporate a wrapper class into your project to make use of it.. I have provided a demonstrative use case of the Stitcher in this sample project: https://github.com/yeatse/opencv-spm-example/tree/stitching
按照主贴的说明部署成功了,感谢。
In version 1.5.2, we revised the processing logic for animated images to accurately manage frames with varying durations, ensuring images are optimally displayed in [AnimatedImageView](https://github.com/onevcat/Kingfisher/wiki/Cheat-Sheet#loading-a-gif) for enhanced performance. You can...
If you play animated webp with Kingfisher's `AnimatedImageView`, you can implement the `AnimatedImageViewDelegate` protocol: ```swift class YourViewController: UIViewController, AnimatedImageViewDelegate { let imageView = AnimatedImageView() override func viewDidLoad() { super.viewDidLoad() imageView.delegate...