coppermine crops the images randomly for exact size coppermine crops the images randomly for exact size
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

coppermine crops the images randomly for exact size

Started by allvip, October 17, 2013, 03:01:01 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

allvip

coppermine crops the images randomly when exact width and height is set in config for thumbnails (it shoud crop the top of the image not the middle).

see here:

http://www.allvip.us/cpg/z/thumbnails.php?album=2

how can I fix it?

ΑndrĂ©

Coppermine always uses the picture's center as exact thumbnail. I assume you always want to use top part of your pictures as exact thumbnails. If so (and assuming you're using GD2 as resize method), open include/picmgmnt.inc.php, find
$destWidth = $thb_width;
and above, add
$yOffset = 0;

allvip