thumbnail files creation. thumbnail files creation.
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

thumbnail files creation.

Started by Shurik_A, December 24, 2004, 02:51:21 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Shurik_A

How thumbnail files are created?

Hein Traag

Thumbnails are created by coppermine itself once you upload a picture and add it to a album.

Shurik_A

I mean more specific:
What code exactly does it?

Nibbler

Image manipulation is done by either GD or IM, as set in config.

Hein Traag

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 ?

Shurik_A

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?

Nibbler

There is a resize_image() function in include/picmgmt.inc.php for normal uploading and showthumb.php handles batch adding.

Shurik_A

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