Samuel submitted this idea :
So what does everyone do when they have to show images of different
proportional dimensions
A few ways:
* Do NOT specify height and width - leave it to the browser to display
the full image in the correct dimensions.
* Change the image server-side so you can proportionately rescale it.
Then you can have both a (calculated) thumbnail and the full-size
image.
* Calculate a width so it is in proportion to your height for this
particular image and let the browser rescale the image (or calculate
height from width). That means a lot of work for the browser: download
the full (possibly large) image, and then rescale it to display a
thumbnail)
Hans Kesting