Quote:
Originally Posted by silks
which is great but i would like this image to show larger if possible - can anyone tell me what to edit please
thx
|
In downloads.php, starting around line 825, find:
PHP Code:
list($width, $height, $type, $attr) = getimagesize($dl->url.$newfilename);
if ($width > 100)
{
$ratio = 100 / $width;
$newheight = $ratio * $height;
}
else
{
$newheight = $height;
}
$destimg = @imagecreatetruecolor(100,$newheight);
imagecopyresampled($destimg,$orig_image,0,0,0,0,100,$newheight,imagesx($orig_image),imagesy($orig_image));
The "100" controls the max width of the image. Change that to what you want.