Hi,
I need code to show picture in thumnail.
regards
nasir mumtaz
how i show picture in thumnail.
Moderator: General Moderators
if you don't have it saved as tumbnail then use the width properties to set it
otherwise look for code to create a tumbnail from the original
Code: Select all
<img src="image path" width="100" />- Ollie Saunders
- DevNet Master
- Posts: 3179
- Joined: Tue May 24, 2005 6:01 pm
- Location: UK
Don't do that. The browser still has to download the full sized image. It is a dead give-away of a really crappy website. GD is a the library provided with PHP for doing image manipulation including resizing. In particular imagecopyresampled() may be of interest.