Have any signups yet?
Show HN: Simple image resizing/optimization service
11–20 of 82 posts
Re: Show HN: Simple image resizing/optimization service
#12Very cool! How is this different from some of the alternatives like Filestack https://www.filestack.com/ . I'm not trolling, genuinely curious.
There are definitely other services out there which address the same thing, the closest one is probably https://rsz.io/ which even includes some more processing features, but it doesn't have the CDN and I couldn't find any info about uptime.
Re: Show HN: Simple image resizing/optimization service
#13100% Uptime Guarantee? I'd like to see a status page with some stats and maybe simple graphs akin to https://status.github.com/ .
Re: Show HN: Simple image resizing/optimization service
#14I made this mainly because I wanted a service to use for my own projects - but the existing solutions were either prohibitively expensive or didn't have uptime guarantees. The backend for the processing service is nodejs and sharp[1], processed images are cached on CloudFlare. The processing servers are a custom instance type in an autoscaling group on Google Cloud. Any feedback is greatly appreciated! [1] https://gi…
Cloudflare does not permit storing just images in any of their plans. Their terms state that serving disproportionate amount of image or video via their service will be violation of their terms. You should check it before using it for longh term or providing cheaper cache options to users.
Re: Show HN: Simple image resizing/optimization service
#15Re: Show HN: Simple image resizing/optimization service
#16Fun feature you should add: the ability to crop around faces. I.e say you have a long and tall image and you need it to be square, you could pick the center, top, or bottom to zoom in on, which do you choose? It would be nice to set a flag and say "find the subject(s) of this photo and crop around the subject(s)".
Re: Show HN: Simple image resizing/optimization service
#17100% Uptime Guarantee? I'd like to see a status page with some stats and maybe simple graphs akin to https://status.github.com/ .
They uses Cloudflare for image caching so it's the Cloudflare uptime. Correct me if I'm wrong.
Re: Show HN: Simple image resizing/optimization service
#18http://i.imgur.com/X9vKa2s.png
https://i.scaley.io/png-256x128/i.imgur.com/X9vKa2s.png
This means that you don't use a linear color space for blending colors.
Sorry about the language, the image is not made by me [1].
[1] https://web.archive.org/web/20120904060524/http://www.4p8.co...
edit:
I see that your backend relies on libvips to do the resizing. I have no experience with it, but I could make libvips-tools' vipsthumbnail program work correctly:
$ vipsthumbnail --linear -f tn_%s.png -s 256x128 gamma-1.0-or-2.2.png
Note the "--linear" option, without it produces the same wrong image.Re: Show HN: Simple image resizing/optimization service
#19Earlier quoted context omitted.
Cloudflare does not permit storing just images in any of their plans. Their terms state that serving disproportionate amount of image or video via their service will be violation of their terms. You should check it before using it for longh term or providing cheaper cache options to users.
Ah, great info - thanks for the heads up. I'll dig into that and look into alternatives