|
Posted by Geoff Cox on February 22, 2008, 4:43 am
Please log in for more thread options On Thu, 21 Feb 2008 17:59:44 -0500, "Jonathan N. Little"
>Geoff Cox < wrote:
>> wrote:
>>
>>> Geoff Cox < wrote:
>>>> I am using thumbnail image as below
>>>>
>>>> <div>
>>>> <a href="assets/images/pic-26-1.jpg"><img
>>>> src="assets/images/pic-26-1.jpg" width="400" height="290"></a>
>>>> </div>
>>
>>> An image with those dimensions doesn't exactly qualify as a thumbnail.
>>> I'd expect thumbnails to be a fraction of that size.
>>
>> oops! I should have typed
>>
>> <div>
>> <a href="assets/images/pic-26-1.jpg" target="pic-26"><img
>> src="assets/images/pic-26-1.jpg" width="50"></a>
>> </div>
>>
>
>If the image pic-26-1.jpg is not actually 50px wide it is not a good
>idea to resize using HTML attributes. Browsers are bad a resampling and
>there is no bandwidth savings because the whole large file must be
>downloaded. Create real thumbnails resampled to actual size.
Thanks david - that makes sense.
Cheers
Geoff
|