tags:

views:

56

answers:

2

Is there any function for create thumbnail image in php ?

+2  A: 

There's no single function that will create the thumbnail for you, but there are several functions that are part of the GD library, like imagecreatetruecolor and imagecopyresampled. The best thing you could do is start with a tutorial, Google knows best here:

http://www.google.co.uk/search?q=gd+php+thumbnail

Andy E
A: 

hi,

you have a GD library function for image creation...pls follow the URL

http://php.net/manual/en/book.image.php
VAC-Prabhu