Animation Webp not working
I run Example Animated Webp, but it's not showing and return an error(Decode wrong):
The operation couldn’t be completed. (PINRemoteImageManagerErrorDomain error 1.)
Example: testtexture_gif_webp_animated.zip
xcode : 12.2 ios: 14.2 texture: Latest PINRemoteImage/WebP: Latest
I use PINImageAnimatedView for WebP and it's work
I have same problem.
I have same problem.
I try and try but it's not working because it's a bug from ASNetworkImageNode, so I have moved to use SDWebImage + WebpCoder extension, and it's working, very smooth =))))
I have same problem.
I try and try but it's not working because it's a bug from ASNetworkImageNode, so I have moved to use SDWebImage + WebpCoder extension, and it's working, very smooth =))))
Hi @baveku do you use ASImageNode with SDAnimatedImageView? Do you have and example code?
Thank you
I have same problem.
I try and try but it's not working because it's a bug from ASNetworkImageNode, so I have moved to use SDWebImage + WebpCoder extension, and it's working, very smooth =))))
Hi @baveku do you use ASImageNode with SDAnimatedImageView? Do you have and example code?
Thank you
let imageNode: ASDisplayNode = {
let node = ASDisplayNode { () -> UIView in
let view = UIImageView()
view.contentMode = .scaleAspectFill
view.backgroundColor = .gray200
return view
}
return node
}()
@williamsantosoRG you can create a node with UIView, and setup SDWebImage + SDWebImageWebPCoder plugin to use, I create a custom node to combine SDWebImage + PINCache + SDWebImageWebPCoder, it's fast and easy to used
Thanks @baveku. That's really helps