Ramon Chavez <[EMAIL PROTECTED]> wrote:
:
: Maybe I'm missing something here but, It can be
: done just using HTML, say...
:
: $h= 250;
: $w= 250;
:
: print "<img src=\"yourimage.jpg\" width=\"$w\" height=\"$h\">\n";
qq would make much easier to read.
print qq|<img src="yourimage.jpg" width="$w" height="$h">\n|;
:
: Or maybe you're talking about something more
: complex and at this time in the morning I can't
: figure out what is it... ;-)
When creating web pages of photo albums you need
to watch out for "dumbnails". They are like thumbnails,
but only the dimensions of the image are changed. If
the image is 250 meg the thumbnail should be much
smaller, but the dumbnail will be the same size. It
would be much better to use an external program to
generate the thumbnails than to generate them
on-the-fly. Then use perl to automatically create the
thumbnail pages.
John cited Randal's article on automating the
process is at:
http://www.stonehenge.com/merlyn/WebTechniques/col29.html
HTH,
Charles K. Clarkson
--
Head Bottle Washer,
Clarkson Energy Homes, Inc.
Mobile Home Specialists
254 968-8328
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]