ホームページ >バックエンド開発 >PHPチュートリアル >PHPサムネイル生成プログラム_PHPチュートリアル
$FILENAME="画像名";
// 画像のサイズを生成
$RESIZEWIDTH=400;
// 画像の高さを生成
$RESIZEHEIGHT=400;
関数 ResizeImage($im,$maxwidth,$maxheight,$name){
$width = imagex($im);
$height = imagey($im);
if(($maxwidth && $width > $maxwidth) || ($maxheight && $height > $maxheight)){
if($maxwidth && $width > $maxwidth){
$widthratio = $maxwidth/$width;
$RESIZEWIDTH=true;
}
if($maxheight && $height > $maxheight){
$heightratio = $maxheight/$height;
$RESIZEHEIGHT=true;
}
if($RESIZEWIDTH && $RESIZEHEIGHT){
if($widthratio $ratio = $widthratio;
}else{
$ratio = $heightratio;
}
}elseif($RESIZEWIDTH){
$ratio = $widthratio;
}elseif($RESIZEHEIGHT){
$ratio = $heightratio;
}
$newwidth = $width * $ratio;
$newheight = $height * $ratio;
if(function_exists("imagecopyresampled")){