Are there any examples of how to use the Blurhash format available in the Image CDN?
It looks to me like the CDN is great for resizing/reformatting images, and returning them as image/* HTTP requests … so you can use them directly as URLs in your HTML frontend. However, the docs say that the Blurhash format returns a string (which you could then decode into an image format or data URI, etc.). But that probably shouldn’t happen on the client side, right? That information should be returned as part of the the initial HTML response so that users get a placeholder image to start, then a subsequent HTTP request fills in the images with the real versions.
At least, that’s how I figure folks would want it to work. So I’m curious about how people are using this feature. Any links to example code would be appreciated!