-
-
/********************** - *@filename - 画像へのパス
- *@tmpname - サムネイルへの一時パス
- *@xmax - 最大幅
- *@ymax -最大身長
- */
- function raise_image($filename, $tmpname, $xmax, $ymax)
- {
- $ext =explode("." , $filename);
- $ext = $ext[count($ext)-1];
if($ext == "jpg" || $ext == "jpeg")
- $im = imagecreatefromjpeg($tmpname);
- elseif($ext == "png")
- $im = imagecreatefrompng($tmpname);
- elseif($ext == "gif")
- $im = imagecreatefromgif($tmpname );
$x = imagex($im);
- $y = imagey($im);
if($x return $im;
if($x >= $y) {
- $newx = $xmax;
- $newy = $newx * $ y / $x;
- }
- else {
- $newy = $ymax;
- $newx = $x / $y * $newy;
- }
$im2 = imagecreatetruecolor($newx, $newy);
- imagecopyresize($im2, $im, 0, 0, 0, 0, Floor($newx), Floor($newy), $x, $y);
- return $im2;
- }
- ?> ;
-
复制代
|