$FILENAME="画像名";
// 画像の宽度を生成します
$RESIZEWIDTH=400;
// 画像の高さを生成します
$RESIZEHEIGHT=400;
function ResizeImage($im,$maxwidth,$maxheight,$name){
$width = 画像x($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;
}その他{
$ratio = $heightratio;
}
}elseif($RESIZEWIDTH){
$ratio = $widthratio;
}elseif($RESIZEHEIGHT){
$ratio = $heightratio;
}
$newwidth = $width * $ratio;
$newheight = $height * $ratio;
if(function_exists("imagecopyresampled")){
www.phperz.com
$newim = imagecreatetruecolor($newwidth, $newheight);
imagecopyresampled($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
}その他{
$newim = imagecreate($newwidth, $newheight);
imagecopyresize($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
}
ImageJpeg ($newim,$name . ".jpg");
ImageDestroy ($newim);
}その他{
ImageJpeg ($im,$name . ".jpg");
}
}
if($_FILES[画像][サイズ]){
if($_FILES[画像][タイプ] == "画像/pjpeg"){
$im = imagecreatefromjpeg($_FILES[画像][tmp_name]);
}elseif($_FILES[画像][タイプ] == "画像/x-png"){
$im = imagecreatefrompng($_FILES[画像][tmp_name]);
}elseif($_FILES[画像][タイプ] == "画像/gif"){
$im = imagecreatefromgif($_FILES[画像][tmp_name]);
}
if($im){
if(file_exists("$FILENAME.jpg")){
unlink("$FILENAME.jpg");
}
ResizeImage($im,$RESIZEWIDTH,$RESIZEHEIGHT,$FILENAME); www~phperz~com
ImageDestroy ($im);
}
}
?>
">