ThumbHash: A better compact image placeholder hash
41–50 of 123 posts
Re: ThumbHash: A better compact image placeholder hash
#42cool idea to extract one piece of the DCTs and emit a tiny low-res image though!
Re: ThumbHash: A better compact image placeholder hash
#43But for what it's worth, I actually made this for another use case: I have a grid of images that I want to be able to zoom really far out. It'd be nice to show something better than the average color when you do this, but it would be too expensive to fetch a lot of really small images all at once. ThumbHash is my way of showing something more accurate than a solid color but without the performance cost of fetching an image. In this scenario you'd only ever see the ThumbHash. You would have to zoom back in to see the full image.
Re: ThumbHash: A better compact image placeholder hash
#44I hate these blurry image thumbnails, much prefer some sort of hole, and just wait for a better thumbnail (look at youtube for this, or basically any site). I'd much rather see engineers spending more time making the thumbnails load faster (improving their backend throughput, precache thumbnails, better compression, etc). The blurry thumbnails have 2 issues 1) trick person into thinking they're loaded, especially if…
I think these issues can be solved by just rendering a spinner or "loading" text on top of the blurred image.
Re: ThumbHash: A better compact image placeholder hash
#45Re: ThumbHash: A better compact image placeholder hash
#46Earlier quoted context omitted.
And this is why everything is slow and terrible. Because us developers use fast machines on fast connections, and assume everyone else does. Travel to some far flung parts of the world, and see if your hypothesis holds true.
If I was in a far flung part of the world I wouldn’t be perusing content rich bandwidth intensive websites. I’d be smoking a cig sitting on a worn mattress in the highest floor of an abandoned apartment building typing on a late 90s ThinkPad, negotiating prices on stolen credit card lists through encrypted IRC channels and moving illicit files on SSH servers based in foreign countries.
Re: ThumbHash: A better compact image placeholder hash
#47This is nice, I really like it. It reminds me of exploring the SVG loader using potrace to generate a silhouette outline of the image. Here's a demo of what that's like: https://twitter.com/Martin_Adams/status/918772434370748416?s...
Re: ThumbHash: A better compact image placeholder hash
#48Hello! I made this. People are talking about not wanting pictures to be initially blurry before they finish loading. I understand that too, and I'm not sure how I feel about it myself (I could go either way). But for what it's worth, I actually made this for another use case: I have a grid of images that I want to be able to zoom really far out. It'd be nice to show something better than the average color when you do…
A nice CSS transition for when the image loaded would be the cherry on top ;)
Re: ThumbHash: A better compact image placeholder hash
#49For these ultra-small sizes, I think I would go with Potato WebP since you can render it without JS, either with an tag or a CSS background. I think it looks better too.
Re: ThumbHash: A better compact image placeholder hash
#50Anyone know why the first comparison image is rotated 90 degrees for both ThumbHash and BlurHash versions? Is this a limitation of the type of encoding or just a mistake? All other comparison images match source rotation.