|
Posted by Jerry Stuckle on 06/24/05 16:17
Zbigniew Lisiecki wrote:
> Hi,
> to show a big picture on a web page i divided it into pieces
> and put them together in a table:
>
> <table>
> <tr>
> <td>
> <a href="part1.jpg">
> <img src="part1.jpg" width="150">
> </a>
>
> to load a chosen part in original size one has to click on it.
> Yet loading of a whole table is still very slow. Does the width
> transformation occur on a client side !!! ?
> Still if it's made by apache on server side how time-effective it
> is ?
> Surely it's better to prepare part[1-n].jpg as part[1-n].smaller.jpg
> in smaller sizes, but i have a lot pictures, so I am looking for an
> effective automatism. Could somebody help me, please.
> best regards
> zbyszek
> ps: how could one shrink *jpg images in batch
Zbigiew,
When you have an <img> tag in your page, the browser downloads the
entire file. If there is resizing required, it is then done client side.
You'll want to create thumbnails for your images. Do some searching
around and you should be able to find a program to help you with it.
Try hotscripts.com for one place.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|