How thumbnail files are created?
Thumbnails are created by coppermine itself once you upload a picture and add it to a album.
I mean more specific:
What code exactly does it?
Image manipulation is done by either GD or IM, as set in config.
searchnew.php look for
/**
* picrow()
*
* return the HTML code for a row to be displayed for an image
* the row contains a checkbox, the image name, a thumbnail
*
* @param $picfile the full path of the file that contains the picture
* @param $picid the name of the check box
* @return the HTML code
*/
should be.. what do you want to do with it ?
Quote from: Nibbler on December 24, 2004, 03:04:58 PM
Image manipulation is done by either GD or IM, as set in config.
What file is dealing with it?
There is a resize_image() function in include/picmgmt.inc.php for normal uploading and showthumb.php handles batch adding.
Quote from: Nibbler on December 24, 2004, 03:13:37 PM
There is a resize_image() function in include/picmgmt.inc.php for normal uploading and showthumb.php handles batch adding.
Thanks