M
Michael Laplante
I have photos that I want to display via HTML. However, most album programs
create smaller copies of the original photos, then point to these copies. I
want the album to display the ORIGINAL photos BUT MODIFY THE HTML
APPROPRIATELY to resize the images according to a maximum width / height I
specify. This would involve maintaining the correct aspect ratio by
adjusting the other non-specified dimension.
Normally the code would look like:
<img src="pathname.jpg width=1200 height=800>
As an example I would like to able to specify a width of 900. The program
would then generate the code:
<img src="pathname.jpg width=900 height=600>
If that's not doable, how about a program that collects the name / height /
width attributes for a list of images in text form? I could then probably
use something like Excel, Notetab, whatever to tweak the numbers before
pasting into my own code.
M
create smaller copies of the original photos, then point to these copies. I
want the album to display the ORIGINAL photos BUT MODIFY THE HTML
APPROPRIATELY to resize the images according to a maximum width / height I
specify. This would involve maintaining the correct aspect ratio by
adjusting the other non-specified dimension.
Normally the code would look like:
<img src="pathname.jpg width=1200 height=800>
As an example I would like to able to specify a width of 900. The program
would then generate the code:
<img src="pathname.jpg width=900 height=600>
If that's not doable, how about a program that collects the name / height /
width attributes for a list of images in text form? I could then probably
use something like Excel, Notetab, whatever to tweak the numbers before
pasting into my own code.
M