Is anyone super familiar with Kamel or one of the other multiplatform image loading libraries?
I'm trying to find a way to use something like Kamel but implement my own cache key provider.
I'm generating thumbnail previews from website URLs, so I'd like to be able to give Kamel just a URL for a website (eg;
kotlinlang.org), and then if a cached image under that URL already exists it will load it. If the image does not exist, it can call some notExistsYet method where I can take that URL and go parse the page to get the image I want (like the og:image url), and then it can load that image. But then it should cache the image under the original full website URL. That way I only have to parse a given website's html once.