This question I suppose is geared towards how to best optimize images for display by a web site. After running Google Pagespeed on a site I am working on, it because obvious that the number one thing I had to do is address the image scaling that was going on, ie, Pagespeed was very unhappy with there being pictures sized much larger than what was to be displayed. Fair enough....
Resizing the images is easy enough, but I am at a quandary as to how best to implement the image resizing because of the following:
Any user image uploaded to the site could be displayed in one of several pages, each of which would have a different image size designated by css. The pictures could be displayed in a regular image gallery with size 800 by 575, or as an image album cover with size 140 by 140, or even as a profile picture with size 175 by 175.
So how would one tackle this issue most efficiently:
1) Simply resize the images to the largest size needed and allow some scaling to occur when needed,
or
2) Would it be better to actually save different sizes of the same picture for display, which would eliminate all scaling of images by the browser at the expense of increased storage costs.
Any input welcome.