I have larger images stored in one folder. I dont want to create thumbnail images, store it some place and retrieve. I am looking for script to create thumbnail images of larger images dynamically and display in the browser but never storing the thumbnail image on the server. Could someone recommend me some links to tutorial or provide me script to do so? I have found phpthumb() http://phpthumb.sourceforge.net/ doing such work in php. How could I use it zend framework or other library, please recommend
Edit : How to use phpthumb() http://phpthumb.sourceforge.net/ ? phpthumb() has a bunch of class files. To generate thumbnail in phpthumb() we only require to write the following line:
<img src="phpthumb.php?src=image.jpg&w=150"/>
I want to use it in zend framework. Where should I place this library? Placing inside the library folder, I would have to rename all the classes and its references. How to do use it? any other techniques