Is anyone super familiar with Kamel or one of the ...
# multiplatform
g
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.
g
For some reason I had it in my head that imageloader didn't support iOS and I had skipped over it - I see now I was wrong. Thanks! I'll take a look at your implementation
👍 1