forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: allvip on October 17, 2013, 03:01:01 pm

Title: coppermine crops the images randomly for exact size
Post by: allvip on October 17, 2013, 03:01:01 pm
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 (http://www.allvip.us/cpg/z/thumbnails.php?album=2)

how can I fix it?
Title: Re: coppermine crops the images randomly for exact size
Post by: Αndré on November 06, 2013, 02:35:15 pm
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
Code: [Select]
$destWidth = $thb_width;and above, add
Code: [Select]
$yOffset = 0;
Title: Re: coppermine crops the images randomly for exact size
Post by: allvip on November 06, 2013, 09:49:02 pm
thanks.I need it that.