あなたがそれらが115x115より大きくてはいけないということを意味するならば。あなたが通過しなければならないプロセスは次のようなものです:
115より広い場合は、幅を115pxに設定し、高さ= height / original_width * 115;
これを行う画像アップローダースクリプトからのコードがあります
list($Width, $Height) = getimagesize($row["img_file"]);
if(($Width > $Height) && ($Width > 115))
{
$Height = ceil(($Height / $Width) * 115) ;
$Width = 115;
}
elseif(($Height > $Width) && ($Height > 115))
{
$Width = ceil(($Width / $Height)* 115);
$Height = 115;
}
elseif(($Height > 115) && ($Height == $Width))
{
$Height = 115;
$Width = 115;
}
正しいサイズになったら、imagecreatefromjpeg / png / gifを使用して画像のサイズを変更し、imagecopyresampledを実行できます。
計算されたサイズを使用してURLから画像のサイズを変更した画像アップロードスクリプトのコードの別のセクション
if ($extension == "png")
{
$image = imagecreatefrompng($URLofImage)or die("Width Of Image: ".$widthofImage." Height Of Image: ".$heightofImage." Height: ".$height." Width: ".$width);
$image_p = imagecreatetruecolor($widthofImage, $heightofImage)or die("Width Of Image: ".$widthofImage." Height Of Image: ".$heightofImage." Height: ".$height." Width: ".$width);
imagealphablending($image_p, false);
$color = imagecolorallocatealpha($image_p, 0, 0, 0, 0);
imagesavealpha($image_p, true);
list($width, $height) = getimagesize($URLofImage);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $widthofImage, $heightofImage, $width, $height);
imagepng($image_p, "./images/thumbs/".$name, 9);
return ("./images/thumbs/".$name);
}