DEV Community

Discussion on: Best way to deal with lots of images on a webpage?

Collapse
 
matthewbdaly profile image
Matthew Daly

It's probably not the exact solution for you given that it's in PHP and it looks like your site is done in C#, but Glide allows you to create an endpoint in your application that serves up your images, and provides a simple API to allow you to dynamically resize, crop or reformat your images, as well as providing various effects and transformations, by simply specifying query parameters when fetching them. You do have to specify signatures so that it can't be misused, but that's straightforward enough.

If you can find a C# equivalent that would probably do the trick.